Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
MuraliPrasath
Creator III
Creator III

Adding a new field with addition of 1.

Hi QV,

I have field [ITEM] with value of 1,2,3,5,7

I need a new field with respect to [ITEM] field +1.

Ex:

ITEM, NewITEM

1,      2

2,      3

3,      4

5,      6

7,      8

1 Solution

Accepted Solutions
sunny_talwar

May be this:

LOAD ITEM,

          ITEM + 1 as NewITEM

FROM Source

View solution in original post

2 Replies
sunny_talwar

May be this:

LOAD ITEM,

          ITEM + 1 as NewITEM

FROM Source

MuraliPrasath
Creator III
Creator III
Author

thanks Sunny.