Forum Discussion
Anonymous
5 years agoNot applicable
Filter rows to adjacent column month
The following measure works fine when my matrix has 'Calendar'[Date Hierarchy] in the columns and 'sales'[Order Date] in the rows. However, when I try to rever to the desired layout of 'Calendar'[Da...
Anonymous
5 years agoNot applicable
Hi Anonymous ,
Please update the formula of measure [CountCompleteEstimate] as below and check whether the matrix can display the data or not:
CountCompleteEstimate =
CALCULATE (
DISTINCTCOUNT ( 'SalesHistory'[SO] ),
FILTER ( 'SalesHistory', 'SalesHistory'[EstimateQuality] = "Complete Estimate" )
)
If the above one is not working, please share some sample data in SalesHistory, Sales & Calendar table and your expected result with backend logic and special examples (exclude sensitive data) in order to provide you a suitable solution? Please also share the related relationship info(cardinality, direction etc.) if there is any relationship exist in these tables. Thank you.
Best Regards