Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
I think its a simple question-but dont blame me I dont rlly use Measures often.
What I've got:
(1) I got a table where Users give an rating from 1-10. I got each day like 50 different ratings.
(2) a measure to calculate the NetPromoterScore (=difference of promoter 9-10 rating to detractors 0-6 rating):
NPS SCORE = ([% Promoters]-[% Detractors])*100
(%Promoters and %Detractors are measures too)
What I want
If I try to visualize it. It calculate on each day a new NPS Score. But I want it to be continuous. Each following day it should be added and not calculated new.
Ive got an date column too.
Tanks for any help, I really dont know how to add the time here.
Solved! Go to Solution.
What I understood is that you want cumulative NPS Score.
You can use something along these lines
Cumulative NPS Score =
CALCULATE (
[NPS Score],
FILTER (
ALL ( 'Date Table' ),
'Date Table'[Date Column] <= MAX ( 'Date Table'[Date Column] )
)
)
Let me know if this works.
Regards,
Aditya
What I understood is that you want cumulative NPS Score.
You can use something along these lines
Cumulative NPS Score =
CALCULATE (
[NPS Score],
FILTER (
ALL ( 'Date Table' ),
'Date Table'[Date Column] <= MAX ( 'Date Table'[Date Column] )
)
)
Let me know if this works.
Regards,
Aditya