cancel
Showing results for 
Search instead for 
Did you mean: 

Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.

Reply
mel0001
New Member

IF Function dependent on Slicer with result coming from different columns

Hi, I have two Data sets as below.

Table 1:

ProductYTD1YTD2YTD3Total
A10151237
B5218
C61310
Total   55

 

Table 2:

MonthYTD
JanYTD1
FebYTD2
MarYTD3

 

I want to create a NewColumn (or maybe a new measure) in Table 1 which is dependent on a Slicer (value: Jan, Feb, Mar) in the Report. 

For example, if filtered value is "Jan" in the slicer, the NewColumn will get YTD1 column, if "Feb", then it will get YTD2 column. 

 

What is the way to do this? 

 

Thank you! 

1 ACCEPTED SOLUTION
v-chenwuz-msft
Community Support
Community Support

Hi  , 

1. Create a table via 

Table = union(VALUES(Table2[YTD]),{"NewColumn"})
 
2. Put the new column [YTD] in 'Table' into Columns of matrix table.

vchenwuzmsft_2-1649755180404.png

 


3. Create a mesure use the following code:

Measure =
VAR _sum =
    CALCULATE (
        SUM ( Table1[Value] ),
        'Table1'[YTD] = SELECTEDVALUE ( 'Table'[YTD] )
    )
VAR _newcolumn =
    CALCULATE (
        SUM ( Table1[Value] ),
        'Table1'[YTD] = SELECTEDVALUE ( Table2[YTD] )
    )
RETURN
    IF (
        HASONEVALUE ( 'Table'[YTD] ),
        IF ( SELECTEDVALUE ( 'Table'[YTD] ) = "newcolumn", _newcolumn, _sum ),
        SUM ( Table1[Value] ) + _newcolumn
    )

 

Result:

vchenwuzmsft_3-1649755217776.png

 

Pbix in the end you can refer.
Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

3 REPLIES 3
PC2790
Community Champion
Community Champion
v-chenwuz-msft
Community Support
Community Support

Hi  , 

1. Create a table via 

Table = union(VALUES(Table2[YTD]),{"NewColumn"})
 
2. Put the new column [YTD] in 'Table' into Columns of matrix table.

vchenwuzmsft_2-1649755180404.png

 


3. Create a mesure use the following code:

Measure =
VAR _sum =
    CALCULATE (
        SUM ( Table1[Value] ),
        'Table1'[YTD] = SELECTEDVALUE ( 'Table'[YTD] )
    )
VAR _newcolumn =
    CALCULATE (
        SUM ( Table1[Value] ),
        'Table1'[YTD] = SELECTEDVALUE ( Table2[YTD] )
    )
RETURN
    IF (
        HASONEVALUE ( 'Table'[YTD] ),
        IF ( SELECTEDVALUE ( 'Table'[YTD] ) = "newcolumn", _newcolumn, _sum ),
        SUM ( Table1[Value] ) + _newcolumn
    )

 

Result:

vchenwuzmsft_3-1649755217776.png

 

Pbix in the end you can refer.
Best Regards

Community Support Team _ chenwu zhu

 

If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

lbendlin
Super User
Super User

A slicer choice cannot create a column. It can impact a measure. Read about SELECTEDVALUE() and SWITCH() 

Helpful resources

Announcements
PBI November 2023 Update Carousel

Power BI Monthly Update - November 2023

Check out the November 2023 Power BI update to learn about new features.

Community News

Fabric Community News unified experience

Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.

Dashboard in a day with date

Exclusive opportunity for Women!

Join us for a free, hands-on Microsoft workshop led by women trainers for women where you will learn how to build a Dashboard in a Day!

Power BI Fabric Summit Carousel

The largest Power BI and Fabric virtual conference

130+ sessions, 130+ speakers, Product managers, MVPs, and experts. All about Power BI and Fabric. Attend online or watch the recordings.

Top Solution Authors
Top Kudoed Authors