Starting December 3, join live sessions with database experts and the Microsoft product team to learn just how easy it is to get started
Learn moreGet certified in Microsoft Fabric—for free! For a limited time, get a free DP-600 exam voucher to use by the end of 2024. Register now
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
Solved! Go to Solution.
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" )
)
)
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!
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" )
)
)
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!
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")))
Starting December 3, join live sessions with database experts and the Fabric product team to learn just how easy it is to get started.
March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount! Early Bird pricing ends December 9th.
User | Count |
---|---|
94 | |
84 | |
84 | |
73 | |
49 |
User | Count |
---|---|
143 | |
132 | |
110 | |
65 | |
55 |