Forum Discussion

Joseph_Hchaime's avatar
Joseph_Hchaime
Icon for Helper III rankHelper III
4 years ago
Solved

Having 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...
  • Ale's avatar
    Ale
    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())