Forum Discussion
Anonymous
9 years agoNot applicable
Multiple if conditions
Hi I have a requirement that, if the value of Agieng(count in days) below 15 then i have to give the ageing bucket(new column) as 0-15, if the value greater than 15 and less than or equal to 30 th...
- 9 years ago
Hi Anonymous,
What I would suggest is to go into the Query Editor and then create a Conditional Column. In doing that it is a lot easier to create your requirments.
Then that will load it into your data model available for you to use it?
Baskar
9 years agoResident Rockstar
Cool Dude,
Switch ( True(),
Agieng < 15 , "0-15",
AND( Agieng >= 15 ,Agieng <= 30, "15-30",
etc........
)
Let me know if any help futher
- Anonymous9 years agoNot applicable
Thanks Baskar
I have already got the logic, thanks for ur valuable reply
- Baskar9 years agoResident Rockstar
Cool dude.
- v-huizhn-msft9 years agoMicrosoft Employee
Hi Anonymous,
If you have resolved your issue, please mark the corresponding reply as answer which will help other people clearly. Thanks a lot.Best Regards,
Angelia