The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends September 15. Request your voucher.
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")))
User | Count |
---|---|
68 | |
63 | |
59 | |
54 | |
28 |
User | Count |
---|---|
182 | |
81 | |
64 | |
46 | |
41 |