March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early bird discount ends December 31.
Register NowBe one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now
hi i have calculated dax , where i want change column name in dax.
example: in slicer i select 2021-2022, column name should be change current Year to "2021-2022"
and if i select 2020-2021 and 2021-2022 , column name should be change current Year to "2021-2022" and Pre Year to 2020-2021
slicer is below.
if i select a particular year then matrix columns should change and show values for that year.
please help to set values dynamic on slicer selection on matrix columns.
example:
if i select 2018 then output will be change and as per below columns.
BH |2018-2019 | 2019-2020| Change | change%
please suggest.
Hi @v-shex-msft ,
As you suggested i have unconnected table and tried above measure.
But i'm getting below error in measure. please suggest
measure:
HI @vs_7,
It seems like I canceled and restored some changes on my expression before I put them into the DAX formatter. Please check the following modified formulas if help:
formula =
VAR currFY =
SELECTEDVALUE ( Master_Calendar[F Year] )
VAR selectedFY =
SELECTEDVALUE ( NewTable[F Year] )
VAR selectedPFY =
( VALUE ( LEFT ( selectedFY, 4 ) ) - 1 ) & "-"
& LEFT ( selectedFY, 4 )
RETURN
IF (
currFY IN { selectedFY, selectedPFY },
VAR range =
CALCULATETABLE (
VALUES ( Master_Calendar[Date] ),
FILTER ( ALLSELECTED ( Master_Calendar ), Master_Calendar[F Year] = currFY )
)
RETURN
CALCULATE (
SUM ( Sales[F Net Value_CR] ),
FILTER ( ALLSELECTED ( Sales ), [Date] IN range ),
VALUES ( Table[Branch] )
)
)
Regards,
Xiaoxin Sheng
HI @vs_7,
AFAIK, current power bi does not support creating dynamic calculated column/tables based on filter selections.
They work on different data levels and you can't use child level to affect its parent.
For your scenario, I'd like to suggest you extract the year ranges to create an unconnected table and use it to create a slicer as selector, then you can raw table branch and year to create a matrix. (branch to row, year to column)
After these steps, you can write a measure formula to lookup corresponding calculations based on current row and column groups and skip the calculation on not match ranges. (power bi visual will auto-hide the blank field)
formula =
VAR currFY =
SELECTEDVALUE ( Master_Calendar[F Year] )
VAR selectedFY =
SELECTEDVALUE ( NewTable[F Year] )
VAR selectedPFY =
( VALUE ( LEFT ( selected, 4 ) ) - 1 ) & "-"
& LEFT ( selected, 4 )
RETURN
IF (
currFY IN { selectedFY, selectedPFY },
VAR range =
CALCULATETABLE (
VALUE ( Master_Calendar[Date] ),
FILTER ( ALLSELECTED ( Master_Calendar ), Master_Calendar[F Year] = currFY )
)
RETURN
CALCULATE (
SUM ( Sales[F Net Value_CR] ),
FILTER ( ALLSELECTED ( Sales ), [Date] IN range ),
VALUES ( Table[Branch] )
)
)
Notice: the data level of power bi.
Database(external) -> query table(query, custom function, query parameters) -> data model table(table, calculate column/table) -> data view with virtual tables(measure, visual, filter, slicer)
Regards,
Xiaoxin Sheng
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!
Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.
Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.
User | Count |
---|---|
129 | |
90 | |
75 | |
58 | |
53 |
User | Count |
---|---|
200 | |
104 | |
101 | |
67 | |
55 |