Count columns with values

How can I count columns with values.
Say I have 20 columns, how can I know the number of columns with values?

IFS(COUNT(Table[Col1])>0,1)+
IFS(COUNT(Table[Col2])>0,1)+

If you need to do this inside of one record instead of table level, you could use
IFS(ISNOTBLANK([Col1],1)+
IFS(ISNOTBLANK([Col2],1)+
etc.

4 Likes

It works. Thanks

You’re welcome