Hello Experts,
I'm struggling with a strange issue. Please help me to solve.I have 2 queries called HW_X and MV_X, all common dimensions are merged.
MV_X Query Objects | HW_X Query Objects |
---|---|
MVModule (Merged) | HwModule (Merged) |
MvDate (Merged) | HwDate (Merged) |
MvEqgrp (Merged) | HwEqgrp (Merged) |
MvMoves - Its a measure | HwWfrs - Its a measure |
Mv EQ Name - Not merged |
One Variable called FA_Module is created based on formula: IF EQName ="X" Then "AA"else if EQName ="Y" Then "BB" Else MV_X.Module
I'm creating a Section Based on FA_Module variable.
Report structure:
Section on FA_Module:
=nameof(MVDate) | =MvDate | Sum |
---|---|---|
Total Wfrs | =ForceMerge(HwWfrs) | =Sum(ForceMerge(HwWfrs)) |
Total Moves | =ForceMerge(MvMoves) | =Sum(ForceMerge(MvMoves)) |
My Output should be like below. Using Horizontal table in report
AA
MVDate | 11/1/2014 | 11/2/2014 | 11/3/2014 | 11/4/2014 | 11/5/2014 | 11/6/2014 | 11/7/2014 | Sum |
---|---|---|---|---|---|---|---|---|
Total Wfrs | 10 | 15 | 20 | 5 | 25 | 35 | 40 | 150 |
Total Moves | 25 | 45 | 70 |
But I'm getting following Output.
AA
MVDate | 11/3/2014 | 11/6/2014 | Sum |
---|---|---|---|
Total Wfrs | 20 | 35 | 150 |
Total Moves | 25 | 45 | 70 |
Its skipping some rows even though there is data for Total Wfrs and MVDates.
Not applying any filters at WebI and UNV level.
I'm getting the required output in DeskI 3.0 Report. But We migrated this report to WebI 4.0 SP6
Problem is in WebI 4.0 SP6 report. It kept huge effort but not able to solve.
How to achieve the desired output. please help.
Thanking you in Advance.