Forum Discussion
Calculated Column for Latest Training Date
- 5 years ago
Gaurav_Lakhotia , From what I got.
You can have new column which tell diff from last training and you can use that
new column =
Datediff( maxx(filter(table ,[Customers Name] = earlier([Customers Name]) && [TrainingDate] <earlier([TrainingDate])),[TrainingDate]),[TrainingDate],day) - 5 years ago
Hi amitchandak ,
The DAX you've shared is calculating by taking very first Customer Training date as a base.
We want it to consider every corresponding training date of each row to search within 28 days after training.
Thanks
Hi amitchandak ,
The DAX you've shared is calculating by taking very first Customer Training date as a base.
We want it to consider every corresponding training date of each row to search within 28 days after training.
Thanks
Gaurav_Lakhotia , Please find the file attached after the signature. I created 2 columns to see if those can help.
Column names are different as they did not get pasted correctly
- Gaurav_Lakhotia5 years agoHelper III
Got the solution.
Thank you amitchandak