Forum Discussion
Joseph_Hchaime
Helper III
4 years agoHaving trouble with DAX formula
Hi, I need to translate a formula into a dax measure. The formula is: # new clients opened and billed this period/ total # of clients billed in the same period (not only new) My data has...
- 4 years ago
It could be because you are comparing a full Date with a Year.
Try adding YEAR() to all the dates.
Year(Client_Creation_Date) = Year (Today())
Year(Bill_Issue_Date) = Year (Today())
Joseph_Hchaime
Helper III
4 years ago
I got this error
Ale
Resolver II
4 years agoYou must use Today() and not only Today.
Year(Today())- Joseph_Hchaime4 years ago
Helper III
I noticed that and I corrected it after posting my reply. The thing is I'm getting blank as a result. Whereby I'm positive we've billed new clients this year
- Ale4 years ago
Resolver II
It could be because you are comparing a full Date with a Year.
Try adding YEAR() to all the dates.
Year(Client_Creation_Date) = Year (Today())
Year(Bill_Issue_Date) = Year (Today())