Power BI is turning 10! Tune in for a special live episode on July 24 with behind-the-scenes stories, product evolution highlights, and a sneak peek at what’s in store for the future.
Save the dateEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
Hello everyone,
Is there any way to force DAX to calculate a constatnt line (1) between two dates? Chart below:
My current measure:
*Measure "Test1" is added to chart as line
Every time I play around with filter context (DIM_DATE) I receive a value 1 across all dates.
Thanks for any help 🙂
Solved! Go to Solution.
HI @Filip_analyst
Please try
Test2 =
VAR date1 =
MAX ( DIM_DATE[DATE] )
VAR date2 =
DATE ( 2022, 01, 05 )
VAR date2 =
DATE ( 2022, 06, 10 )
RETURN
IF ( date1 >= date2 && date1 <= date3, 1 )
HI @Filip_analyst
Please try
Test2 =
VAR date1 =
MAX ( DIM_DATE[DATE] )
VAR date2 =
DATE ( 2022, 01, 05 )
VAR date2 =
DATE ( 2022, 06, 10 )
RETURN
IF ( date1 >= date2 && date1 <= date3, 1 )
Check out the July 2025 Power BI update to learn about new features.
User | Count |
---|---|
22 | |
7 | |
6 | |
6 | |
6 |
User | Count |
---|---|
27 | |
10 | |
10 | |
9 | |
6 |