I need to do a calculation in the glide table as follows:
Column A contains : subscribed / unsubscribed
Column B contains : new / old
I need to know how many old subscribers. and how many new subscribers.
What is the formula to know this?
I need to do a calculation in the glide table as follows:
Column A contains : subscribed / unsubscribed
Column B contains : new / old
I need to know how many old subscribers. and how many new subscribers.
What is the formula to know this?
You could do that as follows:
The above takes advantage of the fact that a Glide boolean can have 3 states: empty, true, false
Update: I just tested that quickly and it doesnโt work. There seems to have been a change in behaviour where an empty boolean value is being treated as false. Therefore, a 4th column is needed.
Thank you very much, I benefited from this
Thank you again