Get certified for free when you join Fabric Data Days 2026 and dive into Fabric, Power BI, SQL, AI, and other essential data skills.
Join nowTry your skills in the Power BI Dataviz World Championship! Round one ends June 26. Join now
Solved! Go to Solution.
Hi @Josearce,
Have you solved your problem? If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please try the formula below.
Column =
VAR currentmonth = 'Calendar Table'[Date].[MonthNo]
VAR currentday = 'Calendar Table'[Date].[Day]
VAR maxmonth =
MONTH ( MAX ( 'Calendar Table'[Date] ) )
VAR maxday =
DAY ( MAX ( 'Calendar Table'[Date] ) )
RETURN
currentmonth & "/"
& currentday
& "-"
& maxmonth
& "/"
& maxday
Best Regards,
Cherry
you should be able to reach your requirement just configuring the slicer with between properties (see attached)
Hi @Josearce
Please clarify if
1) "What I need is to add another columnn that on the row that says 8/27 indicates 8/27 - 9/2, on the row that says 8/28 says 8/27 to 9/2 and so on."
The above rule is constant and that for the entire period between 8/27 to 9/2 the column should have "8/27-9/2".
2) If the calendar has several years of data, is the same rule to be applied for other years for the period "8/27 -9/2"
Share some data / pbix file on google drive / one drive and share the link here.
Cheers
CheenuSing
Weekfromto =
VAR Desde = format(Calculate(min('Calendar Table'[Date]),ALLEXCEPT('Calendar Table','Calendar Table'[Year],'Calendar Table'[Week#])),"mmm-dd-yy")
VAR Hasta = format(Calculate(max('Calendar Table'[Date]),ALLEXCEPT('Calendar Table','Calendar Table'[Year],'Calendar Table'[Week#])),"mmm-dd-yy")
RETURN
Desde &" - "& Hasta
Desde means From
Hasta means Through
Hi @Josearce,
Have you solved your problem? If you have solved, please always accept the replies making sense as solution to your question so that people who may have the same question can get the solution directly.
If you still need help, please try the formula below.
Column =
VAR currentmonth = 'Calendar Table'[Date].[MonthNo]
VAR currentday = 'Calendar Table'[Date].[Day]
VAR maxmonth =
MONTH ( MAX ( 'Calendar Table'[Date] ) )
VAR maxday =
DAY ( MAX ( 'Calendar Table'[Date] ) )
RETURN
currentmonth & "/"
& currentday
& "-"
& maxmonth
& "/"
& maxday
Best Regards,
Cherry
Don't miss out on Data Days, June 15 through August 7. Learn Fabric, Power BI, SQL, AI and more.
Check out the May 2026 Power BI update to learn about new features.
| User | Count |
|---|---|
| 24 | |
| 21 | |
| 20 | |
| 17 | |
| 12 |
| User | Count |
|---|---|
| 64 | |
| 55 | |
| 42 | |
| 38 | |
| 30 |