Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Unwanted Data

hello, Someone please help me how to remove unwanted data

Untitled.png

thanks

venky

1 Solution

Accepted Solutions
sunny_talwar

Some of the date information may be missing/blank. You can remove them in the script by using where statement or you can use 'Suppress When Value Is Null' on the dimensions tab to remove it from the chart.

View solution in original post

23 Replies
Anonymous
Not applicable
Author

On the dimensions of your charts make sure you have Suppress When Value is Null ticked.

swuehl
MVP
MVP

Seems like some of your facts you are aggregating are not properly linked to your calendar.

sunny_talwar

Some of the date information may be missing/blank. You can remove them in the script by using where statement or you can use 'Suppress When Value Is Null' on the dimensions tab to remove it from the chart.

Not applicable
Author

Thanks folks...

I have another question...

What difference between

Gross sales, Net sales, Sales,

Thanks

Venkat

sunny_talwar

Gross Sales = Sales - Sales Returns

Net Sales = Gross Sales - All Other expenses (incl. wages, salaries, taxes, SG&A etc)

Sales = is before any deductions

HTH

Best,

Sunny

Not applicable
Author

How to avoid Null/Blank values in data model...

example:

MasterCalendar:

Right Keep (Orders)

LOAD

     OrderDate,

     Week,

     Year,

     Month,

     MonthNo,

     DayofYear,

     MonthYear,

     YearMonth,

     Day,

     Quarter,

     YearWeek,

     WeekDay,

     WeekDayNo,

     WeekInMonth,

     CurYTDFlag,

     LastYTDFlag,

     CurMTDFlag,

     LastMTDFlag

FROM

[$(vQvdPath)MasterCalendar.qvd]

(qvd) Where Year>=($(vMaxYear)-2);

Even i am Getting Null/Blank vales???

sunindia

Not applicable
Author

How to avoid Null/Blank values in data model...

example:

MasterCalendar:

Right Keep (Orders)

LOAD

     OrderDate,

     Week,

     Year,

     Month,

     MonthNo,

     DayofYear,

     MonthYear,

     YearMonth,

     Day,

     Quarter,

     YearWeek,

     WeekDay,

     WeekDayNo,

     WeekInMonth,

     CurYTDFlag,

     LastYTDFlag,

     CurMTDFlag,

     LastMTDFlag

FROM

[$(vQvdPath)MasterCalendar.qvd]

(qvd) Where Year>=($(vMaxYear)-2);

Even i am Getting Null/Blank vales???

sunny_talwar

Try this may be:

MasterCalendar:

Right Keep (Orders)

LOAD

    OrderDate,

    Week,

    Year,

    Month,

    MonthNo,

    DayofYear,

    MonthYear,

    YearMonth,

    Day,

    Quarter,

    YearWeek,

    WeekDay,

    WeekDayNo,

    WeekInMonth,

    CurYTDFlag,

    LastYTDFlag,

    CurMTDFlag,

    LastMTDFlag

FROM

[$(vQvdPath)MasterCalendar.qvd]

(qvd) Where Year>=($(vMaxYear)-2) and Len(Trim(OrderDate)) > 0 and Len(Trim(Year)) > 0 and Len(Trim(Month)) > 0;