cancel
Showing results for 
Search instead for 
Did you mean: 

How to display '#' as blank?

Former Member
0 Kudos

Some fields are displayed as 'not assigned', and others are displayed as '#', for blank fields in Bex reports? How can I display them as blank? Thanks!

Accepted Solutions (1)

Accepted Solutions (1)

edwin_harpino
Active Contributor
0 Kudos

hi,

you can do with vbamacro

by Peter

SAPBEXonRefresh()

Dim c as range

For Each c in resultArea.cells

if c.Value = "#" then c.Value = " "

Next c

or

by Jens (consider to performance)

put in SAPBEXonRefresh()

resultArea.Select

Cells.Replace What:="#", Replacement:=" ", LookAt:=xlPart, _

SearchOrder:=xlByRows,

MatchCase:=False,

SearchFormat:=False, _

ReplaceFormat:=False

hope this helps.

Former Member
0 Kudos

Solved, thanks.

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Haito,

See this thread.

Cheers,

Aravindhan