Forum Discussion
Anonymous
8 years agoNot applicable
Aggregating by Date when Time Stamp Present - Please Help!
I am putting together a PBI report that tracks usage of a software application. Each time a user logs in, I receive a date and time stamp. I have added a column that associates the login with an in...
- 8 years ago
Couple different ways, easiest is to create a new column with a formula of:
Column = DATEVALUE([DateTime])
BTW, you don't need that column with all 1's and 0's in it, just use a COUNT aggregation.
Greg_Deckler
Community Champion
8 years agoCouple different ways, easiest is to create a new column with a formula of:
Column = DATEVALUE([DateTime])
BTW, you don't need that column with all 1's and 0's in it, just use a COUNT aggregation.
Anonymous
8 years agoNot applicable
Thanks - spot on. Appreciate the information.