Don't miss your chance to take the Fabric Data Engineer (DP-600) exam for FREE! Find out how by watching the DP-600 session on-demand now through April 28th.
Learn moreJoin the FabCon + SQLCon recap series. Up next: Power BI, Real-Time Intelligence, IQ and AI, and Data Factory take center stage. All sessions are available on-demand after the live show. Register now
Hi @kinga
If your write the formula as
IsWeekDay = IF(WEEKDAY(CalendarTable[Date];2)<=5,1)
then your formula in the last post should work
measure =
IF (
ISNUMBER ( tCostAndCycles_TUDetails[TU_1SCHDELDate].[Date] ),
IF (
ISNUMBER ( tCostAndCycles_TUDetails[TU_1ACTDELDate].[Date] ),
IF (
ISNUMBER ( tCostAndCycles_TUDetails[TU_1ActDelDate_CapturedDate].[Date] ),
IF (
tCostAndCycles_TUDetails[TU_1ACTDELDate] >= DATE ( 2018, 10, 1 ),
IF (
tCostAndCycles_TUDetails[TU_1ACTDELDate] <= DATE ( 2018, 12, 31 ),
CALCULATE (
SUM ( 'Calendar Table'[IsWorkDay] ),
DATESBETWEEN (
'Calendar Table'[Date],
MAX('tCostAndCycles_TUDetails'[TU_1ACTDELDate]),
MAX('tCostAndCycles_TUDetails'[TU_1ActDelDate_CapturedDate])
//IF yhis formula is a measure,and
// if your original formula doesn't work,
// please modify as this by adding "MAX" function
)
)
- 1,
BLANK ()
),
BLANK ()
)
)
)
)
Best Regards
Maggie
Hi @kinga
Would you like
tCostAndCycles_TUDetails[TU_1ACTDELDate] > DATE ( 2018, 10, 1 ) and not=weekends ?
or
1.0 * [TU_1ActDelDate_CapturedDate] (not include weekends)
- [TU_1ACTDELDate] (not include weekends) ?
TU 1 OnTime DEL Tracking =
IF (
ISNUMBER ( tCostAndCycles_TUDetails[TU_1SCHDELDate].[Date] ),
IF (
ISNUMBER ( tCostAndCycles_TUDetails[TU_1ACTDELDate].[Date] ),
IF (
ISNUMBER ( tCostAndCycles_TUDetails[TU_1ActDelDate_CapturedDate].[Date] ),
IF (
tCostAndCycles_TUDetails[TU_1ACTDELDate] > DATE ( 2018, 10, 1 ),
1.0 * [TU_1ActDelDate_CapturedDate]
- [TU_1ACTDELDate]
),
BLANK ()
),
BLANK ()
)
)
Best Regards
Maggie
Hello,
For any records that have a TU_1ACTDELDate > DATE (2018, 10, 1 ), it would need to calculate the difference in days between TU_1ActDelDate_CapturedDate and TU_1ACTDELDate, excluding weekends.
Does this help to clarify?
Hi, This is a sample: (You need to adapt to your needs)
In your calendar table add a calculated column:
IsWeekend = IF(WEEKDAY(CalendarTable[Date];2)>5,"Y","N")
Create a measure:
DiffDaysWithoutWeekends =
VAR _Start =
SELECTEDVALUE ( Table1[StartDate] )
VAR _End =
SELECTEDVALUE ( Table1[EndDate] )
RETURN
IF (
HASONEVALUE ( Table1[ID] ),
CALCULATE (
COUNT ( CalendarTable[Date] ),
FILTER (
ALL ( CalendarTable ),
CalendarTable[Date] >= _Start
&& CalendarTable[Date] <= _End
&& CalendarTable[IsWeekend] = "N"
)
)
)
Regards
Victor
Check out the April 2026 Power BI update to learn about new features.
If you have recently started exploring Fabric, we'd love to hear how it's going. Your feedback can help with product improvements.
A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.
| User | Count |
|---|---|
| 44 | |
| 38 | |
| 34 | |
| 20 | |
| 16 |
| User | Count |
|---|---|
| 68 | |
| 65 | |
| 30 | |
| 26 | |
| 25 |