Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
Hi all,
Do you have any idea or formulation how to set a term name for every 6 month. Please refer below as example.
The term name keep going every 6 month.
Regards,
Nuha
@Anonymous Have my answer solved your problem? If so, can you please accept my answer as Solution. Thank you very much for your kind cooperation!
Please adjust this part: instead of && it has to be ||. have tested and it works.
if(SAP_SDT_LV_ISEG_EN[Month Only]>="10" || SAP_SDT_LV_ISEG_EN[Month Only]<="03","SHIMO" & Right(SAP_SDT_LV_ISEG_EN[Year Only],2)))
Please kudo the solution and kindly accept it as resolved. Thank you!
Hi, create a column
Term= If(Month('Calendar'[Date])>=4 && Month('Calendar'[Date])<=9, "KAMI" & Right(Year('Calendar'[Date]),2),
If( Month('Calendar'[Date])>=10 || Month('Calendar'[Date])<=3 "SHIM"& Right(Year('Calendar'[Date]),2)))
Appreciate your kudo and accepted solution!
Hi @olgad ,
Already try your method but its only show KAMI term only. Do you know why?