Forum Discussion
vinoothna9
5 years agoFrequent Visitor
Relationship/Dax Function
I have a requirement where I have to represent revenue amount in a bar chart and Fiscal year, Quarter as Slicers. - Revenue Amount is from Revenue table. - Fiscal year, Quarter slicers are from D...
- 5 years ago
Hi vinoothna9 ,
The reason that cause this issue is that you diable the date relationship between two tables so that the fiscal year slicer could not work and the visual will show both fiscal years value based on your initial measure.
You can modify your measure like this:
Revenue Amount = CALCULATE ( SUM ( 'Revenue Table'[Revenue] ), FILTER ( 'Revenue Table', YEAR ( 'Revenue Table'[Date] ) = SELECTEDVALUE ( 'Default Calendar'[Fiscal year] ) ), USERELATIONSHIP ( 'Default Calendar'[Quarter], 'Revenue Table'[Quarter] ) )In my sample use the table visual to show the result directly:
Attached the sample file in the below, hopes to help you.
Best Regards,
Community Support Team _ Yingjie Li
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
dobregon
5 years agoImpactful Individual
what is the direction of the relationship with revenue table? maybe the problem is there. try to use both direcctions.
vinoothna9
5 years agoFrequent Visitor
dobregon even after I change it to both it is the same.