Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
Hello,
I hope you all are doing good. I have imported a year table, that has a year column starting from 2023 to 2123 and an index column.
In power bi, I created a numeric range parameter slicer for start year. And I have created a dax measure for the end year. If you check the pbi file I attached then you will understand. The end year is basically, we are gonna consider the largest term among the 3 terms (wifia term, revenue term, and srf term) and the add the number with the starting year then we will get the end year.
But, what I need is to make a table visual with dynamic year column that will be responsive for start year measure and end year measure. Suppose, start year is 2037 and end year is 2065, then in that visual I want it to show years from 2037 to 2065.
Please check the pbi file attached.
Solved! Go to Solution.
Hi @Cortana ,
Based on your description,
Please try the following steps:
1.You can create a Calcualted table.
Table = VALUES('_YEAR'[Year])
There is no relationship between the two tables.
2. Use the following code to create a Measure.
Measure =
VAR sel_Year = SELECTEDVALUE('Table'[Year])
RETURN
IF(sel_Year >= [STARTYEAR] && sel_Year <= [ENDYEAR],
1,
0)
3. Put the Year field from Table into table visual.
Then select your visual object, put the measure in the “Filters on this visual" section, and filter it by “Measure is 1" ->Apply Filter.
Result is as below.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi @Cortana ,
Based on your description,
Please try the following steps:
1.You can create a Calcualted table.
Table = VALUES('_YEAR'[Year])
There is no relationship between the two tables.
2. Use the following code to create a Measure.
Measure =
VAR sel_Year = SELECTEDVALUE('Table'[Year])
RETURN
IF(sel_Year >= [STARTYEAR] && sel_Year <= [ENDYEAR],
1,
0)
3. Put the Year field from Table into table visual.
Then select your visual object, put the measure in the “Filters on this visual" section, and filter it by “Measure is 1" ->Apply Filter.
Result is as below.
Best Regards,
Yulia Yan
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
109 | |
100 | |
95 | |
38 | |
37 |
User | Count |
---|---|
151 | |
126 | |
75 | |
74 | |
57 |