Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi all,
Can you please support with the following DAX.
I try to calculate networking day between 2 dates, excluding holidays and weekend.
My holidays table is multi-dimensional, it covers every countries. I tried this but it is not a valid syntax...
= NETWORDAYS( _startdate, _enddate, 1, VALUES(date, country = "FR"))
Best.
Solved! Go to Solution.
=
NETWORKDAYS (
_startdate,
_enddate,
1,
DISTINCT (
SELECTCOLUMNS ( FILTER ( 'Holidays', [country] = "FR"),"Date",[date] ) )
)
)
=
NETWORKDAYS (
_startdate,
_enddate,
1,
DISTINCT (
SELECTCOLUMNS ( FILTER ( 'Holidays', [country] = "FR"),"Date",[date] ) )
)
)
Just trying your solution and it works well. Little bit tricky but I will remember the tips.
thanks a lot for your help 🙂
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |