Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello my friends!
I have a problem loading a merge/combine cells, I would like to add the name of the Merge/combine cells in all the fields but I don´t know how to do that

You can use Peek/Previous functions to do this.
Something like this:
If(Len(Trim(NameofTheField)) = 0, Peek(NameofTheField), NameofTheField) as NameofTheField,
You just need to make sure that sorting is done correctly, else you will see weird results.
Hi Juan,
have a look at using peek for this
if(SE_MMPP_CTR<>Peek(SE_MMPP_CTR), SE_MMPP_CTR, Peek(SE_MMPP_CTR) As SE_MMPP_CTR
or something along those lines
hope that helps
Joe
You can use Peek/Previous functions to do this.
Something like this:
If(Len(Trim(NameofTheField)) = 0, Peek(NameofTheField), NameofTheField) as NameofTheField,
You just need to make sure that sorting is done correctly, else you will see weird results.
try this at script level like:
concat(Field1, Field2) as ConcatenatedFieldName
Hope this help!!
Thanks for all!! It works!!![]()
Sorry but I check the Qlik and the layout was the following:
it seems like it add one more value for each aprt of the field but it didn´t fulfill all the GAPS. any idea?

Would you be able to share a small sample?