This time we’re going bigger than ever. Fabric, Power BI, SQL, AI and more. We're covering it all. You won't want to miss it.
Learn moreLevel up your Power BI skills this month - build one visual each week and tell better stories with data! Get started
Problem: Dynamically change the axis- So there is a drop down of axis type (Market/Country). Based on the selection, the Y-axis should change. So if Market is selected then graph should display sales across markets- NAM, APAC, etc. and if country is selected then graph should display sales across countries. We have 2 separate columns for market and country in data ?
Solved! Go to Solution.
@shashank wrote:
Problem: Dynamically change the axis- So there is a drop down of axis type (Market/Country). Based on the selection, the Y-axis should change. So if Market is selected then graph should display sales across markets- NAM, APAC, etc. and if country is selected then graph should display sales across countries. We have 2 separate columns for market and country in data ?
There's no such feature in Power BI, however I think you could do it with some tricky measure. You can put this measure to the value field of the chart and it would vary according to the country/market slicer.
measure =
IF (
ISFILTERED ( 'slicerTable'[countryOrMarket] )
&& HASONEVALUE ( 'slicerTable'[countryOrMarket] )
&& LASTNONBLANK ( 'slicerTable'[countryOrMarket], "" ) = "coutry",
[your measure for country],
[your measure for market]
)
@shashank wrote:
Problem: Dynamically change the axis- So there is a drop down of axis type (Market/Country). Based on the selection, the Y-axis should change. So if Market is selected then graph should display sales across markets- NAM, APAC, etc. and if country is selected then graph should display sales across countries. We have 2 separate columns for market and country in data ?
There's no such feature in Power BI, however I think you could do it with some tricky measure. You can put this measure to the value field of the chart and it would vary according to the country/market slicer.
measure =
IF (
ISFILTERED ( 'slicerTable'[countryOrMarket] )
&& HASONEVALUE ( 'slicerTable'[countryOrMarket] )
&& LASTNONBLANK ( 'slicerTable'[countryOrMarket], "" ) = "coutry",
[your measure for country],
[your measure for market]
)
Sign up to receive a private message when registration opens and key events begin.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
| User | Count |
|---|---|
| 30 | |
| 23 | |
| 23 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 63 | |
| 38 | |
| 25 | |
| 23 | |
| 22 |