cancel
Showing results for 
Search instead for 
Did you mean: 

How to remove "#" from BEx report?

Former Member
0 Kudos

Hello,

Do you have any idea how to remove "#" from BEx report? I know that it is possible to define in SPRO on the system level, but I am interested in a way to configure it for one particular report only. I don't want to see "#" signs, I would like to see blanks instead.

Thanks in advance

Arelis

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks a lot

Arelis

Former Member
0 Kudos

Code a very small VBa after refresh of the workbook, searching '#' and replacing it by space.

Former Member
0 Kudos

/community [original link is broken]

Former Member
0 Kudos

It is link to whole forum not to particular message, I think.

Former Member
0 Kudos
    Range("C5:H23").Select
    Selection.Replace What:="#", Replacement:=" ", LookAt:=xlPart, _
        SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _
        ReplaceFormat:=False

Replace C5:H23 by the range you want to search for.

(Resultarea in 3.x or varname(1) in BI 7.0)

Former Member
0 Kudos

i am sorry:

Former Member
0 Kudos

Hi,

If you are in 3.5 Analyzer then you can also do the following.

 

Sub SAPBEXonRefresh(queryID As String, resultArea As Range)
           resultArea.Replace What:="#", Replacement:=" "
End Sub

HTH

Datta.