Forum Discussion
daominhtri
7 years agoFrequent Visitor
Create WorkingdayID column
Hi all, Pls help me to create a WorkingdayID1 or WorkingdayID2 column as below.
AlB
Community Champion
7 years agoHi daominhtri
Try this for your column:
WorkingDayID2 =
COUNTROWS (
FILTER (
Table1;
Table1[Date] <= EARLIER ( Table1[Date] ) && Table1[DayType] = "Workingday"
)
)