Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Kohli
Creator II
Creator II

Fetch the sub string from the parent string and remove the null values..

Hi Team. I have Field like these

EmpID

1.00

2.00

3.00

4.00

        (Null Value)

5.00

6.00

10.00

12.00:

I want  output like thease

EmpID

1

2

3

4

5

6

10

12;

3 Replies
ChennaiahNallani
Creator III
Creator III

try this

Table:

Load * Inline [

EmpID

1.00

2.00

3.00

4.00

       

5.00

6.00

10.00

12.00];

table1:

Load

num(EmpID,'##') as EmpID_no

Resident Table;

francescoreggia
Partner - Contributor III
Partner - Contributor III

Table:

Load * where isnull(EmpID)=0 ;

Load * Inline [

EmpID

1.00

2.00

3.00

4.00

      

5.00

6.00

10.00

12.00];

ujjwalraja
Contributor III
Contributor III

Hi,

Use this code

Table:

Load Floor(EmpID) as EmpID

where isnull(EmpID)=0;

Load * Inline [

EmpID

1.00

2.00

3.00

4.00

      

5.00

6.00

10.00

12.00];