Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

July 7 - July 17 | Round 2 of the Power BI Dataviz World Championships. Don't miss your chance! Learn more

Reply
daominhtri
Frequent Visitor

Create WorkingdayID column

Hi all,

Pls help me to create a WorkingdayID1 or WorkingdayID2 column as below.Capture.PNG

 

2 ACCEPTED SOLUTIONS
AlB
Community Champion
Community Champion

Hi @daominhtri

 

Try this for your column:

 

WorkingDayID2 =
COUNTROWS (
    FILTER (
        Table1;
        Table1[Date] <= EARLIER ( Table1[Date] ) && Table1[DayType] = "Workingday"
    )
)

 

View solution in original post

itsmebvk
Continued Contributor
Continued Contributor

@daominhtri  Create following calculation columns. Please see the attached file for your reference.

 

Working Day ID1:
 
Working Day ID1 = 
COUNTROWS (
    FILTER (
        Sheet1,
        Sheet1[Date] <= EARLIER ( Sheet1[Date] ) && Sheet1[Type] = "Working"
    )
)
Working Day ID2:
 
Working Day ID2 = IF(Sheet1[Type]="Working",Sheet1[Working Day ID1],BLANK())

 

 

 Capture.PNG

View solution in original post

3 REPLIES 3
itsmebvk
Continued Contributor
Continued Contributor

@daominhtri  Create following calculation columns. Please see the attached file for your reference.

 

Working Day ID1:
 
Working Day ID1 = 
COUNTROWS (
    FILTER (
        Sheet1,
        Sheet1[Date] <= EARLIER ( Sheet1[Date] ) && Sheet1[Type] = "Working"
    )
)
Working Day ID2:
 
Working Day ID2 = IF(Sheet1[Type]="Working",Sheet1[Working Day ID1],BLANK())

 

 

 Capture.PNG

Thank you @itsmebvk , @AlB for your help.

AlB
Community Champion
Community Champion

Hi @daominhtri

 

Try this for your column:

 

WorkingDayID2 =
COUNTROWS (
    FILTER (
        Table1;
        Table1[Date] <= EARLIER ( Table1[Date] ) && Table1[DayType] = "Workingday"
    )
)

 

Helpful resources

Announcements
FabCon and SQLCon Barcelona 2026

FabCon & SQLCon – Barcelona 2026

Join us in Barcelona for FabCon and SQLCon, the Fabric, Power BI, SQL, and AI community event. Save €200 with code FABCMTY200.

60 days of Data Days Carousel

Data Days 2026

Join Data Days 2026: 60 days of free live/on-demand sessions, challenges, study groups, and certification opportunities.

Power BI DataViz World Championships carousel

Power BI DataViz World Championships - June 2026

A new Power BI DataViz World Championship is coming this June! Don't miss out on submitting your entry.

Top Solution Authors