Forum Discussion
efilipe
8 years agoHelper IV
Identify last day
Hi guys, I have a date table being constructed like: Date = ADDCOLUMNS ( CALENDAR (DATE(2017;5;1); TODAY()); "DateAsInteger"; FORMAT ( [Date]; "YYYYMMDD" ); "Year"; YEAR ( [Date] ); "Mon...
efilipe
8 years agoHelper IV
09/11/2017 :-)
efilipe
8 years agoHelper IV
DD/MM/YYYY
- efilipe8 years agoHelper IV
Thanks for being awsome! :-)
- efilipe8 years agoHelper IV
I had to alter the filter, but I'm getting an error. Any idea? :-)
I want to get the last day when SO is Android. :-)
LastDayAndroid = IF('Date'[Date] = Max('Stores'[Date]) && 'Stores'[OS] = 'Android';1;0)
- Vvelarde8 years agoCommunity Champion
Hi, try with:
LD = If(Store[Date]=Max('Date'[Date]) && Store[Store]="Android";1;0)
Regards
Victor