Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hello, Someone please help me how to remove unwanted data
thanks
venky
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.
On the dimensions of your charts make sure you have Suppress When Value is Null ticked.
Seems like some of your facts you are aggregating are not properly linked to your calendar.
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.
Thanks folks...
I have another question...
What difference between
Gross sales, Net sales, Sales,
Thanks
Venkat
Gross Sales: Gross Sales Definition | Investopedia
Net Sales: Net Sales Definition | Investopedia
Sales: Sale Definition | Investopedia
HTH
Best,
Sunny
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
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???
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???
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;