Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I need output some thing like this x1,x2,x3....xn
thanks
rgv,
Good question . Could you please share your requirement with sample may be we can suggest you some other approach .
Thanks,
AS
Hi i would like to know can we make dynamically rather than static
something like "X'&
Like this:
Try in script
'X' & MonthName as Key
Thanks,
AS
actually i am a beginner in qlikview i dosen't have any document .my requirement is to change month names jan to dec as x1 to x12 .
Thanks
='X'&Num(Month(Date#(yourmonthfield,'MMM')))
in case yourmonthfield is already dual:
='X'&Num(Month(yourmonthfield))
Hi,
Try like
'X'&Date(datefield,'MM') as Newfield
or
try like
'X'&Date(Date#(datefield,'MMM'),'MM') as Newfield
Regards
Thanks MaxDreamer yours answer is also working
Dear RGV,
Here it is.
'x' & AutoNumber(Month_Name) as NewName
Kind regards,
Ishfaque Ahmed
actually i have tried the same with autonumber but it doesn't worked for me ,But yours is working .
thank u Ishfaue Ahmed
Thanks
RGVRand