Forum Discussion
LotteLaugesen
2 years agoHelper V
How to get distinct values without null values for a parameter in Report Builder
Hi What I'm tryng to achieve is to get distinct values from 'Dim_Customers'[Customer group name] but I want to remove null values. Can anybody tell me the correct syntax or how to do it? This...
ChiragGarg2512
2 years agoSolution Sage
Try this DAX:
DistinctCustomerGroup = Distinct(Filter('Dim_Customers', Not IsBlank('Dim_Customers'[Customer group name])))
LotteLaugesen
2 years agoHelper V
Thank you, but it's inside Query Designer in Report Builder and it doesn't accept that