Forum Discussion
efilipe
8 years agoHelper IV
Table LatDayAndroid and LastDayiOS
Hi guys, I want to add two columns. First one with the MAX day for Android and second Max day for iOS. And set that column with 1 (true) and 0 (false); Date SO Daily Device Installs ...
Ashish_Mathur
8 years agoSuper User
Hi efilipe,
You may try this calculated field formula
=if(CALCULATE(MAX(Data[Date]),FILTER(Data,Data[SO]=EARLIER(Data[SO])))=Data[Date],1,0)
Hope this helps.