Forum Discussion
united2win
3 years agoHelper III
DAX Formula Help
Hi, I have the following table of customer's and revenue dates. I would like to create DAX calculated column that tags the customer as 'New' when there is no revenue reported in the previous month. ...
- 3 years ago
sorry for the delay in responding.
you could try something like this
New Customer =var maxdate = PREVIOUSMONTH(NewCustomer[RevenueDate])return if(maxdate, BLANK(),"New") - 3 years ago
hello,
I did it with this formula :
new =var mois_prec = DATEADD(Sheet1[Revenue Date], -1, MONTH)returnif(CALCULATE(COUNT(Sheet1[Customer]), mois_prec) = 0, "New")
Thomas_Daubert
3 years agoHelper I
hello,
I did it with this formula :
new =
var mois_prec = DATEADD(Sheet1[Revenue Date], -1, MONTH)
return
if(
CALCULATE(
COUNT(Sheet1[Customer])
, mois_prec
) = 0
, "New"
)
- united2win3 years agoHelper III
Thanks Thomas, but still didn't work.
- Thomas_Daubert3 years agoHelper I
Sorry to ear that 😞 it was working on my Pbix file.
PS : Do you know how to add pbix files ? i can't find any option to do that.
- united2win3 years agoHelper III
No worries, I have found the solution.