Advance your Data & AI career with 50 days of live learning, dataviz contests, hands-on challenges, study groups & certifications and more!
Get registeredGet Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
I'm new to power bi and it capabilities, If I expalin my dilema then hopefullysomeone will have the answer.
I have a disconected table thatretrieves the last 3 year from a mydataI.E.2023,2022&2021 this is placedin a slicer
Code =
Year Slicer =
var _Year = CALCULATETABLE(
VALUES('Quotes View'[ActionYear]),
FILTER('Quotes View','Quotes View'[ActionYear] >= Year(TODAY())-2)
)
Var Results = _Year
RETURN
Results
This produces the slicer with 3 values. I also have an aditional dynamic slicer that uses:
Period Selection =
var TodaysDate = Today()
var YearStart = CALCULATE(STARTOFYEAR('Quotes View'[ActionedDate]),Year('Quotes View'[ActionedDate]) = Year(TodaysDate))
var QuarterStart = CALCULATE(STARTOFQUARTER('Quotes View'[ActionedDate]),Year('Quotes View'[ActionedDate]) = Year(Year(TodaysDate)) ,QUARTER('Quotes View'[ActionedDate]) = QUARTER(TodaysDate))
var MonthStart = CALCULATE(STARTOFMONTH('Quotes View'[ActionedDate]),Year('Quotes View'[ActionedDate]) = Year(Year(TodaysDate)),Month('Quotes View'[ActionedDate]) = Month(TodaysDate))
var WeekStart = TodaysDate - WEEKDAY(TodaysDate,2)+1
Var Results =
UNION (
ADDCOLUMNS(
CALENDAR(YearStart,TodaysDate),
"Selection","YTD",
"SelectionId",1
),
ADDCOLUMNS(
CALENDAR(QuarterStart,TodaysDate),
"Selection","QTD",
"SelectionId",2
),
ADDCOLUMNS(
CALENDAR(MonthStart,TodaysDate),
"Selection","MTD",
"SelectionId",3
),
ADDCOLUMNS(
CALENDAR(WeekStart,TodaysDate),
"Selection","WTD",
"SelectionId",4
),
ADDCOLUMNS(
CALENDAR(TODAY(),TodaysDate),
"Selection","Today",
"SelectionId",5
)
)
RETURN
Results
This return aslicer with the following Option YTD,QTD,MTD,WTD Today, the issue I have is the above code is only for the current year, I tried numorouse variations to input the value from the year slicer but none work. I want to be able to select a year an the other slicer displays the data for the period seleted for the year selected.
Any assistance would be greatly appreciated.
Please provide sample data that covers your issue or question completely, in a usable format (not as a screenshot).
Do not include sensitive information or anything not related to the issue or question.
If you are unsure how to upload data please refer to https://community.fabric.microsoft.com/t5/Community-Blog/How-to-provide-sample-data-in-the-Power-BI-...
Please show the expected outcome based on the sample data you provided.
Want faster answers? https://community.fabric.microsoft.com/t5/Desktop/How-to-Get-Your-Question-Answered-Quickly/m-p/1447...
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
Check out the October 2025 Power BI update to learn about new features.
| User | Count |
|---|---|
| 6 | |
| 6 | |
| 4 | |
| 4 | |
| 4 |
| User | Count |
|---|---|
| 24 | |
| 17 | |
| 10 | |
| 7 | |
| 6 |