Hey guys,
I was wondering if someone could help me with the final peace of the puzzle for a Bar Chart data source.
Im using the below formula to pull through the chart items, which is correctly pulling in the journey and steps for the app user. However ideally I'd like to group the number of steps per day, so that there are no duplicate journey dates.
I've attached the an image of the the below formula's results.
Thank you in advance 😄
Sort(
Filter(
ShowColumns(
WellbeingStepsChallenge_StepsLog,
"JourneyDate",
"Steps",
"UserEmail"
),
User().Email in UserEmail
),
JourneyDate,
Descending
)
