Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello
I have a problem with data filtering. I want text instead of blank fields in one column
It's My code if(Termine= null(),text('KaineAB'))
Hi,
try like below
if(Isnum(Termine), Termine, 'KaineAB')
Or, send the sample file to verify
Try using the isnull() function instead of = null().
I used isnull () and it didn't help
use
if(Len(Termine)= 0,text('KaineAB'), Termine)
Try like below
if(Len(Trim(Termine))= 0,'KaineAB', Termine)
I used your code but it still did not work, I will attach a screenshot, maybe it will be easier.
Only the red box is to have 'Kaine AB'.
Hi,
try like below
if(Isnum(Termine), Termine, 'KaineAB')
Or, send the sample file to verify