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

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
bice_cold
Frequent Visitor

Payroll Number Semi-Monthly

I would like to create a column using dax that gives me a count of payroll, starting over each year and increasing semi-monthly on the 1st and 16th of each month. For example, the date table will show:

 

 

1/11/20191
1/12/20191
1/13/20191
1/14/20191
1/15/20192
1/16/20192
1/17/20192
1/18/20192
1/19/20192
1/20/20192
1/21/20192
1/22/20192
1/23/20192
1/24/20192
1/25/20192
1/26/20192
1/27/20192
1/28/20192
1/29/20192
1/30/20192
1/31/20192
2/1/20193
2/2/20193
1 ACCEPTED SOLUTION

Try this

NewCol =
VAR Base_ = (2 * ( MONTH ( CalendarTable[Date] ) - 1 )) + 1
RETURN
SWITCH (TRUE ();
DAY ( CalendarTable[Date] ) < 16; Base_;
Base_ + 1
)

View solution in original post

4 REPLIES 4
AlB
Super User
Super User

Hi @bice_cold 

Try this for a calculated column:

 

NewCol =
SWITCH (
    TRUE (),
    VAR Base_ = (2 * ( MONTH ( Table1[Date] ) - 1 )) + 1
    RETURN
        DAY ( Table1[Date] ) < 16, Base_,
    Base_ + 1 
)

 

bice_cold
Frequent Visitor

Thanks for the response @AlB . I tried this, but I got this error:

 

"Failed to resolve name 'Base_'. It is not a valid table, variable, or function name."

 

 

Try this

NewCol =
VAR Base_ = (2 * ( MONTH ( CalendarTable[Date] ) - 1 )) + 1
RETURN
SWITCH (TRUE ();
DAY ( CalendarTable[Date] ) < 16; Base_;
Base_ + 1
)
bice_cold
Frequent Visitor

This worked, thanks so much! I've never come across something like this before. It's a really interesting and creative solution.

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.