Forum Discussion
Unusual Data Mismatch
- 11 months ago
Hi GanesaMoorthyGM,
Is you issue resolved? If not please follow the below approach.
Here the mismatch happens because your current measure calculates the last sales date in a cluster filtered context. So in the cluster dim visual this cuts off early, so you only see 0.25.
To fix it, please use the below measure:Oman YTD Target =
VAR LastSalesDate = CALCULATE(
MAX('Fact_Sales_Master'[DateOnly]),
ALL('Fact_Sales_Master'),
'Fact_Sales_Master'[Country] = "Oman"
)This way both visuals will consistently return 0.39 for Gold_Coins, matching your excel result.
Thanks and regards,
Anjan Kumar Chippa
Hi GanesaMoorthyGM,
Is you issue resolved? If not please follow the below approach.
Here the mismatch happens because your current measure calculates the last sales date in a cluster filtered context. So in the cluster dim visual this cuts off early, so you only see 0.25.
To fix it, please use the below measure:
Oman YTD Target =
VAR LastSalesDate = CALCULATE(
MAX('Fact_Sales_Master'[DateOnly]),
ALL('Fact_Sales_Master'),
'Fact_Sales_Master'[Country] = "Oman"
)
This way both visuals will consistently return 0.39 for Gold_Coins, matching your excel result.
Thanks and regards,
Anjan Kumar Chippa
Hi @GanesaMoorthyGM,
We wanted to kindly follow up to check if the solution I have provided for the issue worked? or let us know if you need any further assistance.
Thanks and regards,
Anjan Kumar Chippa
- v-achippa11 months ago
Community Support
Hi @GanesaMoorthyGM,
As we haven’t heard back from you, we wanted to kindly follow up to check if the solution I have provided for the issue worked? or let us know if you need any further assistance.
Thanks and regards,
Anjan Kumar Chippa