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

Straight Table Query

HI All,

i have the data loaded in straight table:

   

tcategoryttasknametustuktas
BAUabc aa
ProjectefgWIPWIPWIP
Projectsdf WIPWIP
Projectghj PipelinePipeline
Projectcfghy WIPWIP
Projectasdret WIPWIP
BAUfghaaa
BAUClient/Portfolio PricingPipeline
BAUClient/Portfolio Pricing a

and my expected result is as below:

   

tcategoryttasknametustuktas
BAUabc aa
ProjectefgWIPWIPWIP
Projectsdf WIPWIP
Projectghj PipelinePipeline
Projectcfghy WIPWIP
Projectasdret WIPWIP
BAUfghaaa
BAUClient/Portfolio PricingPipelinea

please advise

thanks

Sukhwant

4 Replies
Anil_Babu_Samineni

Suppress null values from Presentation tab

I've taken dim - tcategory, ttaskname, tus

Expression -  If(Len(tuk)>0,tuk)

                   If(Len(tas)>0,tas)

Then Supress the data, You will get exactly what you required. PFA for Ref.

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
Oleg_Troyansky
Partner Ambassador/MVP
Partner Ambassador/MVP

If I understand your requirement correctly, you need to combine various values for the three last columns by Category and Task. In order to achieve that:

1. Use Category and Task as Dimensions

2. Use three Expressions with the following formula:

MaxString(tus)

MaxString(tuk)

MaxString(tas)

Not applicable
Author

Hi,

Please take a look at the attached qvw.

Is this what you need?

- Stan

sunny_talwar

In a table box or straight table? If you use a straight table with tcategory and ttaskname as dimension and other three as expression, it might workout for you