Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Get Fabric Certified for FREE during Fabric Data Days. Don't miss your chance! Request now
Hello,
i have a fact table with two date columns (Start Date and End Date). I also have a date table with dates, years, months, weekdays etc. Now i want to create a table visual with the two date columns which should also show the weekdays. When I drag the weekday column from the date table in the table visual it shows the weekdays from Start Date because thats the active relationship between the two tables. But i also want to have the weekdays from End Date. How can I do that? I tried something with use relationship but it doesnt work:
Can somebody please help me?
Solved! Go to Solution.
Hi, @Anonymous,
you could try to write your measure like this:
MEASURE endWEEKDAY =
VAR _enddate =
CALCULATE ( SELECTEDVALUE ( sales[enddate] ) )
RETURN
CALCULATE (
MAX ( Dates[weekday name] ),
FILTER ( ALL ( Dates ), Dates[Date] = _enddate )
)
cheers,
Sturla
Hi, @Anonymous,
you could try to write your measure like this:
MEASURE endWEEKDAY =
VAR _enddate =
CALCULATE ( SELECTEDVALUE ( sales[enddate] ) )
RETURN
CALCULATE (
MAX ( Dates[weekday name] ),
FILTER ( ALL ( Dates ), Dates[Date] = _enddate )
)
cheers,
Sturla
Check out the November 2025 Power BI update to learn about new features.
Advance your Data & AI career with 50 days of live learning, contests, hands-on challenges, study groups & certifications and more!
| User | Count |
|---|---|
| 103 | |
| 80 | |
| 59 | |
| 51 | |
| 46 |