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

Get certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now

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
November Carousel

Fabric Community Update - November 2024

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

Live Sessions with Fabric DB

Be one of the first to start using Fabric Databases

Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.

Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.

Nov PBI Update Carousel

Power BI Monthly Update - November 2024

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