Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
@Neo2 In the back end first load the data as show below:
NoConcatenate
Temp:
LOAD
Date(Date#("Date Dimension",'YYYYMMDD'),'MM/DD/YYYY') as "Date Dimension",
"Product Dimension 2",
"Person Dimension 3",
"Measure",
Code
FROM [lib://Qlik Community Practice/Example sumifs calculation.xlsx]
(ooxml, embedded labels, header is 2 lines, table is Sheet1)
;
NoConcatenate
Temp1:
Load *
Resident Temp
where "Date Dimension">='09/01/2022' and "Date Dimension"<='09/10/2022';
Drop table Temp;
Exit Script;
In the Front End Create a Pivot Table and and the expression would be sum(Measure) and you will get the expected output.
If this resolves your issue, please like and accept it as a solution.
Hi Sidhiq
It's helpful. Say if your boss wants a week vs week comparison in like shown below. I feel it's better to have it in chart form. Then there will be two measure columns. How is the best way to handle this kind of layout and appropriate expression.
Follow up question regarding this expression
where "Date Dimension">='09/01/2022' and "Date Dimension"<='09/10/2022';
You are using 'Where' and joining the two arguments with 'and' in the middle?
Thanks in advance