Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
krmvacar
Creator II
Creator II

İmport excel format merge measure

Hi all ,

I have the data I got from excel. They want to see it in the same format as below on Qlik Sense.

Is it possible to show it in this format?

When I import it into Qliksense, it assigns the value to the first row and shows the other values as zero.

 

       
ID Country City Salary
23452 TURKEY İzmit                10.000,00
23452 TURKEY İzmit
23452 TURKEY Osmangazi
23452 TURKEY Merkez
23452 TURKEY Gölcük
2 Replies
Or
MVP
MVP

You will not be able to replicate this exact format with Qlik's native objects, as far as I know. If you use a pivot and use Salary as the first dimension (or second, or third), you will get a merged cell for that, but it has to be left of the city or it'll get broken down into rows.

vinieme12
Champion III
Champion III

use the peek() function to fill-down the values from the previous row

As below

 

LOAD

ID

,Country

,City

,If(Len(Salary),Salary,Peek(Salary_2)) as Salary_2

From Xyz.xlsx;

 

 

Vineeth Pujari
If a post helps to resolve your issue, please accept it as a Solution.