Forum Discussion
inconsistent data between desktop and service (calculated table and a measure)
I have defined a new table ("crecimiento") based on the following DAX expresion:
Crecimiento = SUMMARIZE('contratos';'contratos'[fecha].[Date];' contratos'[nomcontrato];' estructuracomercial'[filial];"CrecDiario";CALCULATE(sum('contratos'[saldoeur]);LASTDATE('contratos'[fecha].[Date])) - CALCULATE(SUM(' contratos'[saldoeur]);PREVIOUSDAY(LASTDATE(' contratos'[fecha].[Date]))))
And I have added a visual with some measures, in example "YTD" as
2 Replies
- v-cherch-msftMicrosoft Employee
Hi jondiaphanum
It seems it is an issue with timezone.For further,please have a look at this post to check if it could help you.
Regards,
- jondiaphanumFrequent Visitor
Thanks for the reponse,
After reading the other post, I decided to change format for "date" value in the following "summarize" dax function
'contratos'[fecha].[Date];
but I am not sure how to change the "grouping" clause in the function so as to change [date] and use convert instead of it