Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I need help to do follow.
I have a table "attached" with follow field.
SN | Status | Type | Close_date | Service_date | hours |
I need to have a table showing Only when
Or
I don't want to do it during the import because I need the all data in different table.
I tried different thing but never succeed.
Thanks
Franck
You can use conditions in your expression:
if(Status='Open' OR MonthStart(today())=MonthStart(Close_date))
If you prefer set analysis:
{<Status={'Open'}> + <Close_date={"=MonthStart(today())=MonthStart(Close_date)"}>}
Sorry I attached a wrong file.
and I don't know how to correct this.
attached the correct file
You can use conditions in your expression:
if(Status='Open' OR MonthStart(today())=MonthStart(Close_date))
If you prefer set analysis:
{<Status={'Open'}> + <Close_date={"=MonthStart(today())=MonthStart(Close_date)"}>}
Hi Michael
Thank you for your prompt answer. it's working fine now
Have a good day