How to apply 2 conditions to fetch values from 1 column

Here I have 3 columns namely
Example : Mobile, Model, Company

I need to fetch values in mobile, when Model=’ ’ and Company = ’ ’

Please help me out how to apply the above scenario in calculated fields in Quick sight

This should get what you want:

ifelse(Model=' ' AND Company=' ', Mobile, NULL)
3 Likes