Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
LiquidSword
Partner - Contributor II
Partner - Contributor II

How to fill "cells"?

Don't know how to properly title this question.

PML % is calculated by a couple of measures available in this table. PML is by Report Date, Schedules, and Fabric Number. Each Schedule can have more than one Fabric Number. Each Fabric Number has their own measures that is used to calculate Fabric Number level PML%. The table in this app does not have Fabric Number column, since users usually view PML% on the Schedules level. 

LiquidSword_1-1714361873906.png

Since PML % is viewed on Schedules level, but their can be multiple entries inside each schedule, PML % only shows up once for each Schedule. In other instance, PML % is null. Is there anyway to fill the column, so that, for example, the second PML% is also 1.757% and the fourth one is 1.775% ?

 

 

Labels (1)
1 Solution

Accepted Solutions
Vegar
MVP
MVP

I am assuming you are using some kind of aggr() calculation for PML%.

 

Adding a NONDISTINCT into that function might help you, like this.

AGGR(TOTAL ....)

See : https://help.qlik.com/en-US/sense/February2024/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/aggr....

View solution in original post

2 Replies
Vegar
MVP
MVP

I am assuming you are using some kind of aggr() calculation for PML%.

 

Adding a NONDISTINCT into that function might help you, like this.

AGGR(TOTAL ....)

See : https://help.qlik.com/en-US/sense/February2024/Subsystems/Hub/Content/Sense_Hub/ChartFunctions/aggr....

vinieme12
Champion III
Champion III

It's possible to show the PML% values using the TOTAL Keyword as suggested by @Vegar 

Sum(TOTAL <Product,Schedule,Fabric> PML )

 

but if you intend to use this value for further calculations I would suggest you Map the Values in a new column in your data model

 

Use either Applymap() or Joins to add a new column with PML values for all rows at the required level

https://help.qlik.com/en-US/sense/February2024/Subsystems/Hub/Content/Sense_Hub/Scripting/MappingFun...

 

https://help.qlik.com/en-US/sense/February2024/Subsystems/Hub/Content/Sense_Hub/Scripting/combine-ta...

 

 

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