Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
sona_sa
Creator II
Creator II

How to Make this Output

Hi,

Please find the attached xls. Is it possible to make on behalf of same Actual Data.

Need side one Output on behalf of Actual Data.

Thanks

Labels (3)
5 Replies
Patricia_Silva
Specialist II
Specialist II

Hello @sona_na, what is the output column based on?

Help users find answers! Don't forget to mark a correct resolution 🙂
sona_sa
Creator II
Creator II
Author

Hi Silva,

On Behalf of April Month HC, I have to fill the data for May, June, July etc.

For May HC = April HC + May DOJ + May DOL = 4559+43+(-83) = 4522

Similarly June HC = May HC + June DOJ + June DOL = 4522+19+(-64) = 4477

Like This.

Hope you got my concern. Please help. Attaching xls.

Thanks.

Ksrinivasan
Specialist
Specialist

Hi. Go throu link and find your answer

https://youtu.be/A-kQPw9VMiY

sona_sa
Creator II
Creator II
Author

You Tube is against the compliance in this system.

If You have any expression - please share.

Thanks.

micheledenardi
Specialist II
Specialist II

 

Temp:
LOAD
	Rowno() as Row,
    [Fiscal Month],
    HC,
    DOJ,
    DOL
FROM [lib://Expression Help.xls]
(biff, embedded labels, header is 1 lines, table is Sheet1$);

Final:
Load
	[Fiscal Month],
    if(Row=1,HC,peek(HC)+DOJ+DOL) as HC,
    DOJ,
    DOL
Resident Temp
	Order by Row asc;

Drop Field Row;
Drop Table Temp;

 

2021-08-04 08_49_23-Window.png

Michele De Nardi
If a post helps to resolve your issue, please accept it as a Solution.