cancel
Showing results for 
Search instead for 
Did you mean: 

WebI Report Skipping/Hiding Some Rows. How to resolve this issue?

Former Member
0 Kudos

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 ObjectsHW_X Query Objects

MVModule (Merged)

HwModule (Merged)
MvDate (Merged)HwDate (Merged)
MvEqgrp (Merged)HwEqgrp (Merged)
MvMoves - Its a measureHwWfrs - 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)=MvDateSum
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

MVDate11/1/201411/2/201411/3/201411/4/201411/5/201411/6/201411/7/2014Sum
Total Wfrs1015205253540150
Total Moves254570


But I'm getting following Output.

AA

MVDate11/3/201411/6/2014Sum
Total Wfrs2035150
Total Moves254570

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.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi Thirupathi Reddy Peram,

as you have multiple dimensions merged, in case the above doesn´t work, try

creating a "dummy" variable

[conc] = concatenation of all merged dimensions and create a detail variable

[Mv EQ Name_det] =  [Mv EQ Name] with associated dimension = [conc].


Cheers,

Rogerio

Former Member
0 Kudos

Hello Plank,

Thank you for your help.

Its not useful. No change in report. MvDates are still skipping.

Thanking you.

Regards,

Thiru

Former Member
0 Kudos

Hi ,

Are you using the merged dimensions in your report instead of the individuals one  ?

Cheers,

Rogerio

Former Member
0 Kudos

Yes Rogerio.

I'm using merged dimension only.

Regards,

ThirupathiReddy

Former Member
0 Kudos

Can you share a piece of both your data providers?

rishabh_singhania
Participant
0 Kudos

Hi Thirupathi Reddy Peram,

Not sure but you can give it a try.

Create a variable for Mvmovers and Wfrs(Which are not merged) and keep "Qualifications" as detail(i know these are measure still no loss giving it a try) and in the "associated dimention" select any of your merged dimention and then use these new variables in your report.

Hope it works.

Regards,

Rishabh

Former Member
0 Kudos

Hi Thirupathi,

Use InBlock Context Operator : Sets the context for each section of a Block.

eg: =Forcemerge([HWwfrs]) In Block

And also check / uncheck whether the check box named as "show rows/columns with empty dimension values under the display section of crosstab properties.

Hope this information helps you to some extent..

--Raji. S

Former Member
0 Kudos

Hello Rajeswari,

Thank You for your kind reply.


eg: =Forcemerge([HWwfrs]) In Block is not working and the values showing is equal to Sum in the Block.

If Check show rows/columns with empty dimension values check box its repeating Mvdates and showing dummy values for HwWfrs and MvMoves.


Any other idea?

Thanking You.

Regards,

ThirupathiReddy

Former Member
0 Kudos

So Mydates Object are not skipping rite, it shows dummy value in that cell rite. Can you please share the screen for better understanding.

--Raji. S

Former Member
0 Kudos

Small mistake in formula for Total Moves.

Report structure:

Section on FA_Module:

=nameof(MVDate)=MvDateSum
Total Wfrs=ForceMerge(HwWfrs)=Sum(ForceMerge(HwWfrs))
Total Moves=MvMoves=Sum(MvMoves)

ForceMerge() is not used for Moves.

Regards,

ThirupathiReddy

former_member187092
Participant
0 Kudos

Hi Thirupathi Reddy Peram,

Please try creating a variable which should be " [Forcemerge(HWwfrs)] foreach ([mergeddimension of MvDate]) " ....

and create a variable for MvMoves also like " if isnull(MvMoves]) then " " else "MvMoves" " ..

I hope It will help you in displaying the hidden values....

Please try and let me know.

Regards,

Bala Krish

Former Member
0 Kudos

Hello Krish,

Thank You for replying.

I tried as you suggested but no luck .

Regards,

Thiru