Microsoft Fabric Community Conference 2025, March 31 - April 2, Las Vegas, Nevada. Use code FABINSIDER for a $400 discount.
Register nowThe Power BI DataViz World Championships are on! With four chances to enter, you could win a spot in the LIVE Grand Finale in Las Vegas. Show off your skills.
Hi all,
I am stuck on a use case. The client request is the ability to select a row in a slicer and have another row value filter in addition to the selected value. They have actual and forecast data stored in YYYYXX format, actuals are stored as YYYY00 and forcasts are stored as YYYY01-YYYY12. The ask is to only be able to select the YYYY01-YYYY12 in the slicer and be able to also see the data stored on the YYYY00 row. I cannot edit anything in the data structure (cannot create a view, calculated column, another table). So likely, the answer is dax. Any help is appreciated!
Solved! Go to Solution.
ertainly, you can achieve this using DAX measures in Power BI. You'll need to create a measure that considers both the selected value in the slicer and the corresponding YYYY00 row. Here's a general outline of how you could approach this:
Assuming you have a column named 'Date' and another column named 'Value' in your table, and the slicer is based on the 'Date' column:
Create a Measure for Forecast Values:
ForecastValue = CALCULATE(SUM(Table[Value]), RIGHT(Table[Date], 2) <> "00")
This measure calculates the sum of 'Value' only for rows where the last two characters of the 'Date' column are not "00". This filters out the actuals (YYYY00).
Create a Measure for Actual Values:
ActualValue = CALCULATE(SUM(Table[Value]), RIGHT(Table[Date], 2) = "00")
This measure calculates the sum of 'Value' only for rows where the last two characters of the 'Date' column are "00". This filters out the forecasts (YYYY01-YYYY12).
Create a Combined Measure:
ActualValue = CALCULATE(SUM(Table[Value]), RIGHT(Table[Date], 2) = "00")
This measure calculates the sum of 'Value' only for rows where the last two characters of the 'Date' column are "00". This filters out the forecasts (YYYY01-YYYY12).
Create a Combined Measure:
CombinedValue = [ActualValue] + [ForecastValue]
This measure sums up the values calculated for actuals and forecasts.
Now, use the 'CombinedValue' measure in your visualizations. When you select a value in the slicer corresponding to YYYY01-YYYY12, it will show the combined value of actuals (YYYY00) and forecasts.
Make sure to replace 'Table' with the actual name of your table in these measures. Adjust the column names accordingly if they are different in your dataset.
This approach doesn't modify the data structure and should provide the desired result based on your requirements.
ertainly, you can achieve this using DAX measures in Power BI. You'll need to create a measure that considers both the selected value in the slicer and the corresponding YYYY00 row. Here's a general outline of how you could approach this:
Assuming you have a column named 'Date' and another column named 'Value' in your table, and the slicer is based on the 'Date' column:
Create a Measure for Forecast Values:
ForecastValue = CALCULATE(SUM(Table[Value]), RIGHT(Table[Date], 2) <> "00")
This measure calculates the sum of 'Value' only for rows where the last two characters of the 'Date' column are not "00". This filters out the actuals (YYYY00).
Create a Measure for Actual Values:
ActualValue = CALCULATE(SUM(Table[Value]), RIGHT(Table[Date], 2) = "00")
This measure calculates the sum of 'Value' only for rows where the last two characters of the 'Date' column are "00". This filters out the forecasts (YYYY01-YYYY12).
Create a Combined Measure:
ActualValue = CALCULATE(SUM(Table[Value]), RIGHT(Table[Date], 2) = "00")
This measure calculates the sum of 'Value' only for rows where the last two characters of the 'Date' column are "00". This filters out the forecasts (YYYY01-YYYY12).
Create a Combined Measure:
CombinedValue = [ActualValue] + [ForecastValue]
This measure sums up the values calculated for actuals and forecasts.
Now, use the 'CombinedValue' measure in your visualizations. When you select a value in the slicer corresponding to YYYY01-YYYY12, it will show the combined value of actuals (YYYY00) and forecasts.
Make sure to replace 'Table' with the actual name of your table in these measures. Adjust the column names accordingly if they are different in your dataset.
This approach doesn't modify the data structure and should provide the desired result based on your requirements.
Thank you!!!
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Check out the February 2025 Power BI update to learn about new features.
User | Count |
---|---|
24 | |
12 | |
11 | |
10 | |
9 |
User | Count |
---|---|
18 | |
14 | |
14 | |
13 | |
12 |