Power BI is turning 10, and we’re marking the occasion with a special community challenge. Use your creativity to tell a story, uncover trends, or highlight something unexpected.
Get startedJoin us for an expert-led overview of the tools and concepts you'll need to become a Certified Power BI Data Analyst and pass exam PL-300. Register now.
I am trying to make my first and last row value as zero . I used switch function to do it .
I have a parameter tenure with values 1 2 3 4 5 and forecasted parameter 2021,2022,2023,2024.......
If my tenure is 4 and forecasted year is 2022 then my 2022-4=2018 i.e value of forecasted year and value of year < 2018 should get zero.
so that i can take the sum of value from 2018+2019+2020+2021 from the table1.
newmeasure = selectedvalue[timeperiod]-tenure
new column =
var forecastedyear= year(today())+1
return
switch(true(),
year(sample[timeperiod].year = forecastedyear,0,
year(sample[timeperiod].year < newmeasure,0
return
table1
Year | value | new column |
2017 | 1 | 1 |
2018 | 1 | 1 |
2019 | 1 | 1 |
2020 | 1 | 1 |
2021 | 1 | 1 |
2022 | 1 | 0 |
Problem in the dax is when i am passing the newmeasure in my new column dax it is making only forecasted value zero , but value less than year 2018 is still the same .
@Shahzz77 It's generally not advisable to use a measure as part of a calculated column. What happens in you column if you just simply return newmeasure?
if i am not using it as a colum then how do i select my slect my years to get considered ..what dax i have to write.. time period values how to slect
This is your chance to engage directly with the engineering team behind Fabric and Power BI. Share your experiences and shape the future.
Check out the June 2025 Power BI update to learn about new features.
User | Count |
---|---|
14 | |
11 | |
10 | |
10 | |
10 |
User | Count |
---|---|
16 | |
13 | |
12 | |
11 | |
8 |