Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
Anonymous
Not applicable

Select a column by parameter

Hi everyone,

 

I am new to Power BI and exploring the dashboard. I have created a measure to calculate the cumulative value.

 

Cumulative Freezer=
CALCULATE (
    SUM ( 'Business Plan'[Freezer] ),
    FILTER (
        ALL ( 'Business Plan'[Period] ),
        'Business Plan'[Period] <= MAX ( 'Business Plan'[Period] )
    )
)

 

However, I want to make the chart more dynamic, like through a parameter selection I will get different cumulative value from different column.

 

But it seems that DAX doesn't have a function like "colnames" which allow me to pass dynamtic column to SUM function.

 

Can anyone help me with it? Thank you very much.

1 ACCEPTED SOLUTION


@Anonymous wrote:

Thanks for the disconnected slicer information. But I think the main difference is that I hope to filter by columns but the disconnected slicer filters data by rows. Still thanks for your information.


@Anonymous

In my opinion, a better practice for your case is to unpivot the columns and slice the unpivoted column.

Capture.PNG

 

If the way in your original post is still preferable, you could try to create measure as

 

Cumulative Freezer =
SWITCH (
    TRUE (),
    HASONEVALUE ( ParameterTable[Parameter] )
        && ISFILTERED ( ParameterTable[Parameter] )
        && LASTNONBLANK ( ParameterTable[Parameter], "" ) = "Freezer", CALCULATE (
        SUM ( 'Business Plan'[Freezer] ),
        FILTER (
            ALL ( 'Business Plan'[Period] ),
            'Business Plan'[Period] <= MAX ( 'Business Plan'[Period] )
        )
    ),
    HASONEVALUE ( ParameterTable[Parameter] )
        && ISFILTERED ( ParameterTable[Parameter] )
        && LASTNONBLANK ( ParameterTable[Parameter], "" ) = "Washing machine", CALCULATE (
        SUM ( 'Business Plan'[Washing machine] ),
        FILTER (
            ALL ( 'Business Plan'[Period] ),
            'Business Plan'[Period] <= MAX ( 'Business Plan'[Period] )
        )
    ),
    0
)

View solution in original post

6 REPLIES 6
GilbertQ
Super User
Super User

Hi @Anonymous

 

You cannot pass a column name into a DAX measure as far as I am aware. 

 

You can pass values within a column to a DAX measure though.

 

Do you have an example of what you are trying to achieve?





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Anonymous
Not applicable

Capture.PNG

 

Here is a sample of my data. So far I created a measure for column "Freezer".

Cumulative Freezer=
CALCULATE (
    SUM ( 'Business Plan'[Freezer] ),
    FILTER (
        ALL ( 'Business Plan'[Period] ),
        'Business Plan'[Period] <= MAX ( 'Business Plan'[Period] )
    )
)

I hope that I can have different measure for different columns using parameter or other method so that I do not need to create new measure for every single column. A sample chart is below:

 

Capture2.PNG

Hi @Anonymous

 

It appears that you could use the disconnected slicers option in which you might have to create a few measures, but for the end user they can click on a slicer and it will change dynamically for them?

 

https://www.fourmoo.com/2017/08/08/power-bi-how-disconnected-slicers-can-enrich-transform-your-analytics-data/





Did I answer your question? Mark my post as a solution!

Proud to be a Super User!







Power BI Blog

Anonymous
Not applicable

Thanks for the disconnected slicer information. But I think the main difference is that I hope to filter by columns but the disconnected slicer filters data by rows. Still thanks for your information.


@Anonymous wrote:

Thanks for the disconnected slicer information. But I think the main difference is that I hope to filter by columns but the disconnected slicer filters data by rows. Still thanks for your information.


@Anonymous

In my opinion, a better practice for your case is to unpivot the columns and slice the unpivoted column.

Capture.PNG

 

If the way in your original post is still preferable, you could try to create measure as

 

Cumulative Freezer =
SWITCH (
    TRUE (),
    HASONEVALUE ( ParameterTable[Parameter] )
        && ISFILTERED ( ParameterTable[Parameter] )
        && LASTNONBLANK ( ParameterTable[Parameter], "" ) = "Freezer", CALCULATE (
        SUM ( 'Business Plan'[Freezer] ),
        FILTER (
            ALL ( 'Business Plan'[Period] ),
            'Business Plan'[Period] <= MAX ( 'Business Plan'[Period] )
        )
    ),
    HASONEVALUE ( ParameterTable[Parameter] )
        && ISFILTERED ( ParameterTable[Parameter] )
        && LASTNONBLANK ( ParameterTable[Parameter], "" ) = "Washing machine", CALCULATE (
        SUM ( 'Business Plan'[Washing machine] ),
        FILTER (
            ALL ( 'Business Plan'[Period] ),
            'Business Plan'[Period] <= MAX ( 'Business Plan'[Period] )
        )
    ),
    0
)
Anonymous
Not applicable

Thank you! I think unpivot columns are suitable for my case and thank you for the code I will also try!

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.