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

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
garynorcrossmmc
Advocate IV
Advocate IV

Overlapping Date Period Labels

Hi all,

I am trying to create a column labeled '12 Months', '18 Months' and '24 Months' according to which values in this table have a 1 or 0 in the columns labeled the same way:

garynorcrossmmc_0-1628107454699.png

The column would be used as a slicer in the report for a user to select a time period.  I have tried using IF, SWITCH and other methods but cannot figure out how to do this.  

1 ACCEPTED SOLUTION
samdthompson
Memorable Member
Memorable Member

Hello, couple of ways to do it. This is probably going to be the easiest:

 

1. Make a unconnected Table with the names of the Time period you want

2. Reference the time period names from the new table in a calculation like this:

Value = 
IF(HASONEFILTER(Table[CalcType]),
    SWITCH(SELECTEDVALUE(Table[CalcType]),
        "12Months", [12MonthCalc],
        "18Months", [18MonthCalc],
        "24Months", [24MonthCalc]
    ),
   BLANK()
)

Any new ones need to be referenced in this calculation but its not a lot of work to do.

 

 

// if this is a solution please mark as such. Kudos always appreciated.

View solution in original post

2 REPLIES 2
samdthompson
Memorable Member
Memorable Member

Hello, couple of ways to do it. This is probably going to be the easiest:

 

1. Make a unconnected Table with the names of the Time period you want

2. Reference the time period names from the new table in a calculation like this:

Value = 
IF(HASONEFILTER(Table[CalcType]),
    SWITCH(SELECTEDVALUE(Table[CalcType]),
        "12Months", [12MonthCalc],
        "18Months", [18MonthCalc],
        "24Months", [24MonthCalc]
    ),
   BLANK()
)

Any new ones need to be referenced in this calculation but its not a lot of work to do.

 

 

// if this is a solution please mark as such. Kudos always appreciated.

Hello there, I need exactly this, but I'm not able to understand the solution properly... 😕 
Could you please explain it to me in a bit more detail?
The "Value" - it's measure?

And what is "Table" and the column [CalcType]? Is it the new disconnected table?
And which field do I use in the slicer?
Your help would be very much appreciated!
Thank you.

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Fabric Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.