Forum Discussion
Measure returning data only when using smaller than operator
- Anonymous2 years ago
Hi jmkvalsund ,
Firstly thanks to Ashish_Mathur and lbendlin for their prompt replies, I created some sample data to solve the problem for you. You can follow the steps below:
1. Modify your measure.
M_NumberOfNewCustomersByCAMThisYear = VAR var_M_LastDatePreviousYear = [M_LastDatePreviousYear] VAR M_SelectedUser = SELECTEDVALUE ( Customers[CAM] ) RETURN CALCULATE ( DISTINCTCOUNT ( Customers[CustomerID] ), FILTER ( Customers, CALCULATE ( MIN ( Customers[OrderDateID] ) ) > var_M_LastDatePreviousYear ) )2.Add a Slicer.
Final output:
Count all CAM when OrderDateID > 20231229Count CAM1 when OrderDateID > 20231229
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi Anonymous ,
Thanks, I've tried your approach here, and I see this might be another way to solve the issue.
I can replicate the table and get the total numbers of new customers as total.
However, if I then try to put M_NumberOfNewCustomersByCAMThisYear onto a card, it still says "(blank)"...
What's your properties on the card showing M_NumberOfNewCustomersByCAMThisYear?
Regards,
John Martin
Hi jmkvalsund ,
You need to change :
MIN(Customers[OrderDateID])>var_M_LastDatePreviousYear
to :
CALCULATE ( MIN ( Customers[OrderDateID] ) ) > var_M_LastDatePreviousYear
in order for the card to output the correct result.
The card shows a total greater than the date 20231229.
How to Get Your Question Answered Quickly - Microsoft Fabric Community
If it does not help, please provide more details with your desired out put and pbix file without privacy information.
Best Regards,
Ada Wang
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.