Forum Discussion
Fiscal Year Calculated Columns
- 8 years ago
Hi marcus505,
Yes, here you should update your formula like this.
Measure = CALCULATE(SUM(fabric_swishs[fabric_typeofcaller]),FILTER(fabric_swishs,fabric_swishs[fabric_dateofcall].[Month]="August" && fabric_swishs[fabric_dateofcall].[Year]=2018 && fabric_swishs[fabric_typeofcaller]= 555510002))
Regards,
Frank
Hi marcus505,
Could you please share your pbix to me? You can upload your pbix to dorpbox and paste the link here directly.
Regards,
Frank
- v-frfei-msft8 years agoCommunity Support
Hi marcus505,
The highlighted part in your formula, there is no "Family" in the column. So the error will occur. If we delete the part and update the formula to a new one, that will work well.
Measure = CALCULATE(SUM(fabric_swishs[fabric_typeofcaller]),FILTER(fabric_swishs,fabric_swishs[fabric_dateofcall].[Month]="August" && fabric_swishs[fabric_dateofcall].[Year]=2018 && fabric_swishs[fabric_typeofcaller]="Family"))
Measure2 = CALCULATE(SUM(fabric_swishs[fabric_typeofcaller]),FILTER(fabric_swishs,fabric_swishs[fabric_dateofcall].[Month]="August" && fabric_swishs[fabric_dateofcall].[Year]=2018))
Please check the pbix as attached.
https://www.dropbox.com/s/hbu25f4vct5lbky/FiscalData.pbix?dl=0
Regards,
Frank
- marcus5058 years agoFrequent Visitor
Hi Frank,
Thanks a lot.
Type of caller is a pick list which has multiple values.
Family
Self
Teacher
The only filter missing is type of caller. When i applied the filter, i got an error shown in the previous post.
Please let me know if you have any questions.
Thanks,
- marcus5058 years agoFrequent Visitor
Hi Frank,
I was applying the filter by label "Family". As you can see below (this is Dynamics CRM)
So in that case i would need to filter TypeOfCaller by the fieldvalue and sum them i take it rather than Label?
Thanks