Skip to main content
Announcements
Accelerate Your Success: Fuel your data and AI journey with the right services, delivered by our experts. Learn More
cancel
Showing results for 
Search instead for 
Did you mean: 
mahitham
Creator II
Creator II

Replace() help

Hi Experts,

Can any one please help me on below requirement.

I have field with below data in excel. Please help me to replace Not Applicable to n/a in the backend.

Number

4586

12463

28336

Not Applicable

536303

Thanks in advance

1 Solution

Accepted Solutions
OmarBenSalem

When u load it, load it as follow:

if(Number='Not Applicable','n/a', Number) as Number

View solution in original post

2 Replies
OmarBenSalem

When u load it, load it as follow:

if(Number='Not Applicable','n/a', Number) as Number

Chanty4u
MVP
MVP

try this

load *, if(Number='Not Applicable','N/A',Number) as New;

load * Inline[

Number


4586


12463


28336


Not Applicable


536303


];