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!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi All,
I am new to Power BI and trying to solve a problem.
My excel is having 3 columns: Code, Customer, bucket 0-10 days (measure)
Need number of customers which are having values in 0-10 days bucket against to each code.
tried with combinaiton of count and group by but unable to get it.
Thanks in advance.
Solved! Go to Solution.
Pleases try this as a Measure:
NumberofCustomers = CALCULATE( COUNTA(YourTable[Customer] ),
FILTER( YourTable, YourTable[0-10 Days] > 0 ))
Then use this Measure in a table visual or other chart visual.
Hope this helps.
Regards,
Pleases try this as a Measure:
NumberofCustomers = CALCULATE( COUNTA(YourTable[Customer] ),
FILTER( YourTable, YourTable[0-10 Days] > 0 ))
Then use this Measure in a table visual or other chart visual.
Hope this helps.
Regards,
Thanks much for the quick reply. it is working as expected.