Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Folks,
after reading so much, i am still not able to build the correct formula for my diagram.
I would lie to calculate the sum of OUTBOUND_DAILY sent yesterday. My formula looks like:
=sum( {$<Date_Daily={ $(Today()-1) }> } [OUTBOUND DAILY])
The Date_Daily is saved in the format: 'DD.MM.YYYY'.
When I use the formula with a fixed date like this, it works perfect:
=sum( {$<Date_Daily={ '19.04.2012' }> } [OUTBOUND DAILY])
Can you help me to enter the formula correct to see each day the previous date.
Thanks so much,
Regards Mathias
HI Folks,
here we go:
=sum({$<Date_Daily={'$(=(Date((Today()-1), 'DD.MM.YYYY')))' }>}[OUTBOUND DAILY])
The thing was I guess, the -> ' <- needs to be set close around the Date function. Otherwise empty fields are added.
Thanks so much Guys,
you helped a lot,
Cheers,
Mathias
Hi,
Then you have to use the same format here also
=sum( {$<Date_Daily={'$(=Date(Today()-1,'DD.MM.YYYY'))}>} [OUTBOUND DAILY])
Celambarasan
With this problem a couple of things come to mind.
Best of luck
Chris
Thanks Gentlemen for you quick replies. Also for the detailled description you gave.
I tried both formulas and both don't work. I used the formulas from chrisammers and corrected it slighty (chriscammers wrote 'MM.DD.YYYY' instead of 'DD.MM.YYYY). Furthermore I guess there is a ' or " to much or less in the formular from Celambarasan.
Sorry to ask you again, but both arent' correct. On which part can I work again to get it done?
Thanks,
Mathias
Hi,
Check with this
=sum( {$<Date_Daily={$(=Date(Today()-1,'DD.MM.YYYY'))}>} [OUTBOUND DAILY])
HI Folks,
here we go:
=sum({$<Date_Daily={'$(=(Date((Today()-1), 'DD.MM.YYYY')))' }>}[OUTBOUND DAILY])
The thing was I guess, the -> ' <- needs to be set close around the Date function. Otherwise empty fields are added.
Thanks so much Guys,
you helped a lot,
Cheers,
Mathias