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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
abhaysingh
Specialist II
Specialist II

exp help

HI all

i have one table field which contain year 2014 and some integer values in it .

i.e.

Table

2014

1.2

2.3

2.4

1

3 and so on

i want to pick 2014 from it as a year and also want to add 2015 in it.

how can i do it.

output i need is

i.e.

Table

2014

2015

1.2

2.3

2.4

1

3 and so on

kindly help asap

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

If you need to add 2015 as valur for your field then:

Load * from table

concatenate

load * inline [

myfield

2015

];

let me know

anbu1984
Master III
Master III

Tbl:

Load * Inline [

Txt

2014

1.2

2.3

2.4

1

3 ];

Load Txt+1 As Txt Resident Tbl Where IsNum(Txt) And Len(Txt) = 4;