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!The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now! Learn more
Helloss,
Can anyone tell me the solution of the below mention Problem ? ->
I have a calculated column in my fact table, which is -
Test Request Age_New = DATEDIFF('FACT_Lab_Test_Request'[LIMS_Lab_Test_Request_Created_Date].[Date],NOW(),DAY)-if(ISBLANK(COUNTROWS(FILTER(HolidayList,AND(HolidayList[Date]>='FACT_Lab_Test_Request'[LIMS_Lab_Test_Request_Created_Date].[Date],HolidayList[Date]<=NOW())))),0,COUNTROWS(FILTER(HolidayList,AND(HolidayList[Date]>='FACT_Lab_Test_Request'[LIMS_Lab_Test_Request_Created_Date].[Date],HolidayList[Date]<=NOW()))))
Now I want to create the same column in my Orders dimension table. when i am trying to use the same calculation it gives me the below error -
also by applying Min or Max is not giving me correct result.
The relationship between Fact and Dim_order is Many to One and Single way.
What can be done in this case?
Solved! Go to Solution.
Hi @subho220 ,
Modify your measure as below:
Test Request Age_New =
DATEDIFF (
MAX('FACT_Lab_Test_Request'[Date]),
NOW (),
DAY
)
- IF (
ISBLANK (
COUNTROWS (
FILTER (
HolidayList,
AND (
HolidayList[Date] >= MAX('FACT_Lab_Test_Request'[Date]),
HolidayList[Date] <= NOW ()
)
)
)
),
0,
COUNTROWS (
FILTER (
HolidayList,
AND (
HolidayList[Date] >= MAX('FACT_Lab_Test_Request'[Date]),
HolidayList[Date] <= NOW ()
)
)
)
)
And you will see:
For the related .pbix file,pls see attached.
Hi @subho220 ,
Modify your measure as below:
Test Request Age_New =
DATEDIFF (
MAX('FACT_Lab_Test_Request'[Date]),
NOW (),
DAY
)
- IF (
ISBLANK (
COUNTROWS (
FILTER (
HolidayList,
AND (
HolidayList[Date] >= MAX('FACT_Lab_Test_Request'[Date]),
HolidayList[Date] <= NOW ()
)
)
)
),
0,
COUNTROWS (
FILTER (
HolidayList,
AND (
HolidayList[Date] >= MAX('FACT_Lab_Test_Request'[Date]),
HolidayList[Date] <= NOW ()
)
)
)
)
And you will see:
For the related .pbix file,pls see attached.
@subho220 , if you want to copy value from one table to another refer this video : https://www.youtube.com/watch?v=czNHt7UXIe8
@subho220 Read this post to get your answer quickly.
https://community.powerbi.com/t5/Community-Blog/How-to-Get-Your-Question-Answered-Quickly/ba-p/38490
Subscribe to the @PowerBIHowTo YT channel for an upcoming video on List and Record functions in Power Query!!
Learn Power BI and Fabric - subscribe to our YT channel - Click here: @PowerBIHowTo
If my solution proved useful, I'd be delighted to receive Kudos. When you put effort into asking a question, it's equally thoughtful to acknowledge and give Kudos to the individual who helped you solve the problem. It's a small gesture that shows appreciation and encouragement! ❤
Did I answer your question? Mark my post as a solution. Proud to be a Super User! Appreciate your Kudos 🙂
Feel free to email me with any of your BI needs.
The Power BI Data Visualization World Championships is back! Get ahead of the game and start preparing now!
| User | Count |
|---|---|
| 40 | |
| 35 | |
| 34 | |
| 31 | |
| 28 |
| User | Count |
|---|---|
| 136 | |
| 102 | |
| 68 | |
| 66 | |
| 58 |