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.
Hey guys 🙂
I insert the following Measure in Power BI Desktop:
Latest_NPS = CALCULATE(COUNTA(NPS[nps_category]);DATESBETWEEN(NPS[ts];[LastestDate_NPS_Start];[LatestDate_NPS_End]))
It retunrs: Nothing
Returns_Nothing
If I insert this measure:
Latest_NPS = CALCULATE(COUNTA(NPS[nps_category]);DATESBETWEEN(NPS[ts];[LastestDate_NPS_Start];[LastestDate_NPS_Start]))
It retunrs: 1
1
Why I am not able to COUNTA the NPS[nps_category] for a specific timeline?
Thanks in advance,
Simon
Solved! Go to Solution.
Hi @SimonAbs,
You can try to use below formula to calculate records between specific date range:
Latest_NPS = VAR currStart = MAX ( NPS[LastestDate_NPS_Start] ) VAR currEnd = MAX ( NPS[LatestDate_NPS_End] ) RETURN CALCULATE ( COUNTA ( NPS[nps_category] ); FILTER ( ALLSELECTED ( NPS ); NPS[ts] IN CALENDAR ( currStart; currEnd ) ) )
Regards,
Xiaoxin Sheng
Hi @SimonAbs,
You can try to use below formula to calculate records between specific date range:
Latest_NPS = VAR currStart = MAX ( NPS[LastestDate_NPS_Start] ) VAR currEnd = MAX ( NPS[LatestDate_NPS_End] ) RETURN CALCULATE ( COUNTA ( NPS[nps_category] ); FILTER ( ALLSELECTED ( NPS ); NPS[ts] IN CALENDAR ( currStart; currEnd ) ) )
Regards,
Xiaoxin Sheng
Hi @Anonymous,
Thanks for the fast reply.
It works perfect 🙂
Best regards,
Simon