Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I have a set analysis and need to restrict the range of the maxmim date to -1 -
=max({<BREAK={'5Days'}>}date(DATE))
I tried like this but I have an error -
=max({<BREAK={'5Days'}, DATE = {Today()-1}>}date(DATE)) and
=max({<BREAK={'5Days'}>+< DATE = {Today()-1}>}date(DATE))
Do you have any other idea?
Thanks.
I solved it like this -
=max({<BREAK={'5Days'}>}date((DATE)-1))
and it worked perfectly. In fact it gave the maximum date - 1.
=max({<BREAK={'5Days'}, DATE = {'$(=Date(today()-1))'}>}date(DATE))
Hi, I tried it like that but now the whole chart dissapeared.
I tried like this -
=max({<BREAK={'5Days'}>}date((DATE)-1))
and it showed for example if the Last date was 9th of September, it showed 8th of September...
but I am not sure if it is the correct result.
In fact, the above expression will return the '8th of September' only for the value of BREAK which is “5Days".
Are you expecting a different outcome? Perhaps you could share some data and want you to hope to achieve.
I solved it like this -
=max({<BREAK={'5Days'}>}date((DATE)-1))
and it worked perfectly. In fact it gave the maximum date - 1.