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!To celebrate FabCon Vienna, we are offering 50% off select exams. Ends October 3rd. Request your discount now.
Hi,
would like to ask for possible solution for this
i have column for today and transaction date i want also to exclude weekend/holiday
based on this columns
Measure = Total count of records
((ABS(current date - date_reported)) - nonworking days)
Thanks.
Solved! Go to Solution.
Hi, @Easley06
You can try the following methods.
Measure =
VAR N1 =
ABS ( [Today] - SELECTEDVALUE ( 'Table'[transaction date] ) )
VAR N2 =
CALCULATE (
COUNT ( 'Date'[Non working day] ),
FILTER (
ALL ( 'Date' ),
[Date] >= SELECTEDVALUE ( 'Table'[transaction date] )
&& [Date] <= [Today]
&& [Non working day] = 1
)
)
RETURN
N1 - N2
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi, @Easley06
You can try the following methods.
Measure =
VAR N1 =
ABS ( [Today] - SELECTEDVALUE ( 'Table'[transaction date] ) )
VAR N2 =
CALCULATE (
COUNT ( 'Date'[Non working day] ),
FILTER (
ALL ( 'Date' ),
[Date] >= SELECTEDVALUE ( 'Table'[transaction date] )
&& [Date] <= [Today]
&& [Non working day] = 1
)
)
RETURN
N1 - N2
Is this the result you expect?
Best Regards,
Community Support Team _Charlotte
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
You can try
Num working days =
NETWORKDAYS (
SELECTEDVALUE ( 'Table'[transaction date] ),
TODAY (),
1,
CALCULATETABLE ( VALUES ( 'Date'[Date] ), 'Date'[non_working_day] = 1 )
)