Forum Discussion
Noadekat
2 years agoNew Member
ERROR BETWEEN INTEGER AND TEXT
Hello everyone, Can you please help me with the following formula? What I want to do is I made a column with numbers where multiple columns where summed, but there are rows which are empty. ...
- 2 years ago
"" is a text, therefore the error. Try using:
= if(ISBLANK([Totaal aantal fouten]), 0 , [Totaal aantal fouten])
that should work
Damian_CT_Nom
Helper I
2 years ago"" is a text, therefore the error. Try using:
= if(ISBLANK([Totaal aantal fouten]), 0 , [Totaal aantal fouten])
that should work