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
Anonymous
Not applicable

Custom Column with IF and else

i wanted to  create a simple formula either measure or Column

Filter Scope
IF assignment date = 2022/09/19 = Then "Existing emp Initial launch"
If assignment date > date 2022,9,19 = " Role change "
Else assignment date <= hire date = "New Hire"

 

i had some help from Data engineers who helped me with this using switch but that too advance to understand and i want to learn its simple way can you please help 

1 ACCEPTED SOLUTION
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

You can add a new column with below code

New Column = 
IF (
    'DataTable'[assignment date] = DATE ( 2022, 9, 19 ),
    "Existing emp Initial launch",
    IF (
        'DataTable'[assignment date] > DATE ( 2022, 9, 19 ),
        "Role change",
        IF ( 'DataTable'[assignment date] <= 'DataTable'[hire date], "New Hire" )
    )
)

vjingzhang_0-1673251819649.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it. Highly appreciate your Kudos!

 

View solution in original post

2 REPLIES 2
v-jingzhang
Community Support
Community Support

Hi @Anonymous 

 

You can add a new column with below code

New Column = 
IF (
    'DataTable'[assignment date] = DATE ( 2022, 9, 19 ),
    "Existing emp Initial launch",
    IF (
        'DataTable'[assignment date] > DATE ( 2022, 9, 19 ),
        "Role change",
        IF ( 'DataTable'[assignment date] <= 'DataTable'[hire date], "New Hire" )
    )
)

vjingzhang_0-1673251819649.png

 

Best Regards,
Community Support Team _ Jing
If this post helps, please Accept it as Solution to help other members find it. Highly appreciate your Kudos!

 

Surya9
Helper V
Helper V

Scope = IF(assignment date = 2022/09/19 , "Existing emp Initial launch",
                  IF(assignment date > 2022/09/19, "Role change",
                      IF(assignment date <= hire date, "New Hire")))

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.