Forum Discussion
ChrisRafer5
2 years agoNew Member
Why is this function returning a boolean value?
So i have this dashboard where im trying to create a function where i have two if's logicals results. When i do It like so: Name = If(isblank('protocolos 1[tempo em atendimento]) && 'protocolos 1[s...
Greg_Deckler
2 years agoCommunity Champion
ChrisRafer5 Not clear to me what exactly you are trying to accomplish but you are logically and'ing ( && ) two values which means that you will get a boolean value as a result. Basically your formula can be broken down to
(some number) && (some other number)
That is going to return TRUE or FALSE.