Forum Discussion
Pricey79
3 years agoHelper V
Nested IF help please
Hello everyone, I was hoping someone could help me please. I'm really struggoing with this for some reason I have two columns, and I would like to create a new column that says True or Yes (doesn...
- 3 years ago
Hi Pricey79 ,
Please try this ,True/False = IF (NOT(ISBLANK(Orders[Sales Total]))&& NOT(ISBLANK(Orders[SalesByCatergory])) , "Yes","No")Thanks,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
pratyashasamal
3 years agoMemorable Member
Hi Pricey79 ,
Please try this ,
True/False = IF (
NOT(ISBLANK(Orders[Sales Total]))&& NOT(ISBLANK(Orders[SalesByCatergory])) , "Yes","No"
)
Thanks,
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
Pratyasha Samal
Has this post solved your problem? Please Accept as Solution so that others can find it quickly and to let the community know your problem has been solved.
If you found this post helpful, please give Kudos C
- Pricey793 years agoHelper V
pratyashasamal Wonderful, thnak you very much