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

How to show fake values on domentions ?


Hi,

I am new to qlikview.

I need to show below dimentions values.

-1beta,

-2gama,

-3sigma,

mean,

-1beta,

2gama,

3sigma

but, my data does not have any single raw with some dimentiones values

like

-1beta,

-2gama

but, still,

i need to shows this diemntions with no value.

currently, i am using Staright table and it does not show

-1beta and -2gama because not a single raw have this value.

so, how can we show this dimentiones ?

Thanks!.

5 Replies
Not applicable
Author


Can someone help me with this ?

Not applicable
Author

Hi Hailey,

Have you checked "show all dimensions"? See below highlighted in red:

Screen Shot 2014-07-12 at 20.33.52.png

Otherwise, if you attach a qvw with some sample data it will be easier to help you.

Hope that helps,

Matt

its_anandrjs

Provide any sample data or may be you use In-line tables.

maxgro
MVP
MVP

1) you should add the missing dimension (see script below)

2) in chart, maybe you have to check show all values (dimension tab) and uncheck suppress zero values (presentation tab)

fact:

load * inline [

dim, exp

-3sigma, 1

mean, 2

3sigma,5

];

// add missing dimensions

concatenate (fact)

load * inline [

dim

-1beta

-2gama

];

ashfaq_haseeb
Champion III
Champion III

Hi,

It depends on what are you trying to achieve. If it is just a matter of showing - 1beta, -2gama etc.

You can use inline table in the back-end.

If you don't want to use that. Then follow this.


create a straight table with.

Calculated Dimension as :

=ValueList('-1beta','-2gama','-3sigma')


Expression:

1

Regards

ASHFAQ