Hi all,
I’m searching for a formula which gives me the days between a date and the last day of the year. I something possible?
Many thanks
Denise
esined (BOB member since 2011-07-05)
Hi all,
I’m searching for a formula which gives me the days between a date and the last day of the year. I something possible?
Many thanks
Denise
esined (BOB member since 2011-07-05)
If the End of Year date is available as a dimension in your universe, then use:
=DaysBetween([Date];[EOY Date])
Otherwise you could hard-code it as
=DaysBetween([Date];‘31/12/2011’)
mpwalker (BOB member since 2008-11-06)