Fabric is Generally Available. Browse Fabric Presentations. Work towards your Fabric certification with the Cloud Skills Challenge.
Hi all,
I have a problem and I cannot figure it out on my own.
I need to transform the amount of days into [TEXT] '< 3 months' (<90 days) or [TEXT] '> 3 months' (>89 days). The transform options do not give a solution, or i cannot find it. Please help me out. I think there must be a simple solution :).
Thanks in advance!
Solved! Go to Solution.
Hi @Flappy8Flapjack , you can create a calculate column:
Result = SWITCH(TRUE(),
'Your column Amount of days'<90, "<3 months",
'Your column Amount of days'>89, ">3 months",
""
)
I hope works for you, Best regards
@Flappy8Flapjack, It would be better if you share sample data along with expected output in excel format.
Hi @Flappy8Flapjack , you can create a calculate column:
Result = SWITCH(TRUE(),
'Your column Amount of days'<90, "<3 months",
'Your column Amount of days'>89, ">3 months",
""
)
I hope works for you, Best regards
Check out the November 2023 Power BI update to learn about new features.
Read the latest Fabric Community announcements, including updates on Power BI, Synapse, Data Factory and Data Activator.