How to remove commas from number in Bex analyzer

Hello gurus,
I am having a requirement where i need to show the number without separating with commas. for example 23,34,780 as 2334780 in the report for a particular column only. I know that it is possible using the macros but i am unaware of the VB code.
I have created the same using  the BEX Analyzer of BI 7 by creating the workbook and maintaining the properties for that columns. But right now i am working in BW 3.5 when i tried the same in this i am getting the run time error and disconnecting from the SAP.
So now i have decided to go with the Macros pls help me with the VB code.
Regards

Thanks for ur reponse Danny.
I have edited the macro and paste the below code changing the column number.
Sub Macro3()
' Macro3 Macro
    Application.Goto Reference:="Macro3"
    Columns("R:R").Select
Selection.NumberFormat = "#############"
End sub.
But its not working, still i am getting the commas in between the key figure. kindly let me know if i need make any other change bcoz i havent work on macros VB code earlier.
Regards
Edited by: KK on Jun 16, 2009 2:17 AM

Similar Messages

  • How to remove Variables Personalization in the BEx Analyzer?

    Hi All, Help us. Say please:
    1. How to remove personal Variables Personalization for query/user in the BEx Analyzer with standart tools?
    2. How to disable personalization button on varible screen?
    Our users very often click this "bad" button and after that can't to find required criteria on selection criteria screen. We've studied BW Guides and Forum materials (may be not very thoroughly), but search usefull information only for Web Reporting. We've search corresponding table /BI0/APERS_VAR00 but fear to edit it directly.
    Best regards, Igor

    Hi All,
    I think that best way to remove personalization of any var or infoobject could be done through the next logic.
    we have ODS <b>0PERS_VAR</b>.
    we need to remove line from this ODS with specific parameters like USERNAME and VAR_NAME or IOBJ_NAME.
    <b>Step by step instruction</b>:
    1. Create <b>update rule</b> from ODS 0PERS_VAR to the same ODS.
    2. Write <b>'Start routing'</b> to update ODS with the next ABAP-code
      LOOP AT DATA_PACKAGE.
        DELETE FROM /bi0/apers_var00
          WHERE tctusernm = DATA_PACKAGE-tctusernm AND
              ( tctvarnm = DATA_PACKAGE-tctvarnm OR
                tctiobjnm = DATA_PACKAGE-tctiobjnm ).
        DELETE DATA_PACKAGE.
      ENDLOOP.
    3. Activate update rule.
    4. Update ODS Data in Data Target with <b>'full update'</b> !
    5. At the selection screen of info-package <b>specify fields</b>
              < 'TCTUSERNM' - username  > AND
              < 'TCTVARNM' - var name > OR < 'TCTIOBJNM' - infoobject name >
    PS:\ As result <b>personalisation will be reseted selectively</b>.
    if it help you, it is a chance to donate some points to me
    best regards

  • How to remove commas from xvbap-kwmeng field

    Hi All,
    Can you guys/gals help me ??
    I am having a issue with comma in xvbap-kwmeng field, I have value 1,662.000,
    How can I get rid of comma.
    and also please be aware that, I may have 1,662,123.000 situtation as well.
    How can I remove all comma's from by xvbap-kemeng field.
    Thanks
    Anitha.

    Hi,
    Check whether TRANSLATE statement works for you
    TRANSLATE xvbap-kwmeng USING ', '.
    In single quote use comma followed by a space after that use  CONDENSE  xvbap-kwmeng NO-GAPS.
    Regards,
    Selva

  • Removing commas from report result

    Hello gurus,
    Is there a way to remove commas from data values in the BEx reports?
    I used NODIM() to remove $ signs and units. We need to remove the commas as well.
    Thank you,
    Malli

    hi,
    in query properities you should have option to show unit on the top of column only and in key figure properities should be option to choose how many decimal spaces you want to be visible on report (this option you have in rsa1 -> infoobjects -> your key figure -> BEx reporting tab)
    Regards,
    Andrzej

  • How to prevent a portal user from using the BEx Analyzer ?

    Hi,
    we have different type of users : most users may use the portal as well
    as the analyzer ;
    we have one special user with extended authorizations : this user
    should use the portal , where he has a limited set of queries to run
    with hardcoded filters ==> this user should not be able to use the
    analyzer however, since he then would be able to call all other queries
    by using the find function ;
    how can we make sure this user cannot use the analyzer , using SAP
    authorizations ?
    best regards,
    Erwin Van Giel.

    Hi,
    if I remove the complete S_RFC authorization for the user then the BEx Analyzer cannot connect anymore to the BW system, but neither can the user run reports from the portal : it needs the S_RFC with 'SYST'.
    If I only remove the RRMX from the S_TCODE and from the S_RFC, it does not prevent the user from starting the BEx Analyzer and connecting to the BW system. It only stops the user if he would start the RRMX transaction from within an SAPGUI session.
    Perhaps there should be a value in the S_RFC that allows connections from the portal but not from the BEx Analyzer .... ?
    so not solved yet ....
    best regards,
    Erwin.

  • How to spell currency from number to words

    how to spell currency from number to words?
    Is there a built in function in oracle?
    Can anybody give me the code?
    thanks
    sharath

    ok, rewritten to work with nulls and numbers from -5373484.99$ to +5373484.99$
    SQL> set null "<NULL>"
    SQL> select
    to_char(comm, '$999999.99'),
    decode(comm, null, null,
      decode(sign(trunc(comm)),
        0, to_char(to_date(to_char(trunc(comm)),'SSSSS'),'ssssssp'),
        1, to_char(to_date('1','J')+(trunc(comm)-1),'jsp'),
       -1, 'minus '||to_char(to_date('1','J')+(trunc(comm)-1),'jsp')
      ) || ' dollars and '||
      to_char(to_date(to_char(mod(comm,1)*100),'SSSSS'),'ssssssp')||
      ' cents'
    from emp;
    TO_CHAR(COM DECODE(COMM,NULL,NULL,DECODE(SIGN(TRUNC(COMM)),0,TO_CHAR(TO_DATE(TO_CHAR(TRUNC(COMM)),'SSSSS'),'SSSSSSP'),1,TO_CHAR(TO_DATE('1','J')+(TRUNC(COMM)-1),'JSP
    <NULL>      <NULL>
        $300.00 three hundred dollars and zero cents
        $500.00 five hundred dollars and zero cents
    <NULL>      <NULL>
       $1400.00 one thousand four hundred dollars and zero cents
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>
           $.00 zero dollars and zero cents
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>
    <NULL>      <NULL>

  • HT1386 The first time I synced my iphone with my mac, I didn't realize that all of my photos from iphoto would transfer over to the phone.   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the

    The first time I synced my iphone 4 with my mac, I didn't realize that all of my photos from the iphoto library would transfer over to the phone (more than 3,000).   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the phone.  I tried to uncheck boxes and sync again, but I get a message that there is no room on the iphone.  I've read as many articles as I can find, but still cannot manage this.  Thanks for any help.

    Open itunes, connect iphone, select what you want, sync

  • How to remove pics from my 3GS...???

    How to remove pics from my 3GS..???

    Photos taken with the phone can be deleted by selecting them and hitting the little wastebasket icon in the right bottom corner.
    Photos you did sync to your phone, can only be removed by deselecting them in the photo pane in iTunes, the following sync will remove them from the phone.

  • Does anyone know how to remove images from google

    i had instagram and i didnt upload images of myself but i only used my own image in the display picture and some how it has gone on to the google image search yesterday i deleted my account but when i checked to see if my images do appear in the google images i had some really bad regrets !! i reallywant to know how i can remove pictures off the google image search  even doe this does not kind of relate thank you .

    Does anyone know how to remove vocals from an import from I tunes...a  polyphonic stereo mix ?
    If you are talking about some "Karaoke" method using Logic I'll try to offer one. Before that I must say that most of the Karaoke methods are based on reversing the Phase of one of the stereo channel and bussing or merging the stereo into Mono. The result is: killing all Pan Centered in the mix - like Main Vocal, Bass, Kick, SN ect.
    The artifacts of the Stereo FX of the main vocal will stay in the Karaoke, cause the FX is stereo etc.
    Here is the Logic Setup I can offer to try some Karaoke trick using Logic.
    1. Import a Stereo mix into a Logic Stereo track.
    2. Create another stereo track and duplicate (copy) the Original Mix region to the duplicated track.
    3. Hard Pan L/R both stereo tracks.
    4. Insert an EQ and Gainer plugins into the duplicated track (R).
    5. Set the Output select of the both tracks to a Bus and assign the new Aux Track Switch mode to "Mono".
    6. Open the Gainer plugin and thick the "Phase Invert" Right button.
    7. To keep the "lowend" instruments like the bass and kick, open the EQ plugin and enable the Low Cut filter and try some Hz settings 80-115, or different Q which will sounds better for your Karaoke.
    P.S Click the image below to show its real resolution!
    Regards,
    A.G
    ======================================
    www.audiogrocery.com
    Author of: Logic GUI Deluxe(Free), Vox De Bulgaria s.a.g.e vocal pack for RMX, Logic Snapshot Console, RMX Power CTRL - Logic Environment Midi editor for Stylus etc.
    ======================================

  • How to remove Unicode from XML file

    I get following error when unmarshal xml:
    [java] org.xml.sax.SAXParseException: An invalid XML character (Unicode: 0x15) was found in the element content of the document.
    Anyone know how to remove Unicode from xml file? Can I remove the unicode by rebuild the file?
    Thanks

    These sort of error usually occur when you're using a different character encoding to read the file than the one you wrote it with. Perhaps if you were to post the problem section of the file and/or the code that created it in the first place.

  • How to remove iPhone from a certain computer

    How to remove iPhone from a certain computer along with it's ID to allow another phone to use the comp soley.

    You do not need to do anything.
    Simply stop syncing the iphone to the computer and begin syncing the new iphone to the computer.

  • How to remove Seperator from check-in and profile check in pages

    How to remove Seperator from check-in and profile check in pages
    The seperator is included on the checkin pages, which is present in the std_page with name "std_namevalue_separator", this is called by td_document_checkin_fields and std_document_file_fields.
    Defination of include:
    <@dynamichtml std_namevalue_separator@>
    <$if not isUploadFieldScript$>
    <tr>
         <td width="<$captionFieldWidth$>"><hr /></td>
         <td width="<$captionEntryWidth$>"><hr /></td>
    </tr>
    <$endif$>
    <@end@>
    I have to remove the following include from some of the profile check in page.
    Please suggest if anyone have some idea, how to proceed.
    Thanks,
    Sumit

    791848 wrote:I have to remove the following include from some of the profile check in page.The key here is that you want to do this in some profiles, not all profiles or globally, if I'm reading this right.
    Without writing a component, you can put this code in the "side effects" box in the desired profile(s). This code removes the horizontal rule, and inserts a non breaking space in its place.
    <$setResourceInclude("std_namevalue_separator","<$if not isUploadFieldScript$>
    <tr>
    <td width=\"<$captionFieldWidth$>\"> </td>
    <td width=\"<$captionEntryWidth$>\"> </td>
    </tr>
    <$endif$>")$>YMMV. The non-breaking space may get stripped out in the forum.

  • How to remove text from .swf animation?

    how to remove text from .swf animation? Can no find this text
    in fla file. Flash 8.

    exactly what 'text' are you referring to? text that you typed
    on the Stage using the 'textTool'? simply select the text with the
    'arrowTool' and hit delete.
    If you are referring to a textField that you want to
    eliminate after a certain amount of time, within your animation
    sequence. first copy the text, create a new layer, paste the text
    in place, then where you want to have the text 'disappear' insert a
    'blank keyframe' at that point in the text layer.
    OR place the textfield within a MC and remove it with code.
    OR if the text is dynamic and you wish to use the position at a
    later time, pass a value of null or and empty string to the field
    at the point you wish. And there are other ways still. :) hope one
    of these works for you.

  • How to remove passcode from ipod touch 3g  if power botton is not working?

    how to remove passcode from ipod touch 3g  if power botton is not working?

    Use this program to place the iPod in recovery mode so that you then can restore the iPod via iTunes.
    RecBoot: Easy Way to Put iPhone into Recovery Mode

  • How to remove myself from/leave a team?

    Hi
    I'm using Visual Studio Online in my software development classes. The problem is that the "Accounts list" on my Visual Studio Online portal is crowded with projects from past years. A clean-up is needed.
    I found this solution (https://social.msdn.microsoft.com/Forums/vstudio/en-US/80057697-38d7-4161-8564-13c630943484/vs-tfs-online-how-to-remove-myself-from-a-team-?forum=TFService), but the problem in order to apply it is that I have no more contact with
    a lot of those students + most of their accounts are expired.
    How can I solve this?
    Thanks in advance!
    Evert
    PS: my apologies for any linguistic mistakes... English isn't my mother tongue.

    Hi Evert,
    Based on your description, seems you're the owner of the Visual Studio Online account. If you want to remove your account from the teams that expired, then you can delete the teams directly in team project administrative page of team web access.
    If you only want to remove your account from the teams, then you can click the team and remove your account in administrative page.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

Maybe you are looking for

  • Start up disk or recovery disk

    with my G5 I need to get a new hard drive since the old one died. to format the new hard drive do I need a start up disk or a recovery disk. Or if I have the OS X 10.4.6 I can install from the os disks?

  • E65 and BT headset

    I bougt E65 smatphone, everything seems great with it, exept one thing. When I connect my Logitech Freedom Hedset and NextLink Bluespoon AX2 on it it drops volume to the minimum, so every time I have to put it to maximum manually on headset... Anothe

  • Asha 501 can't fetch large MMS

    My Nokia Asha will not receive pictures that are over a certain size limit. If I send a large photo to the Asha 501, it says "Can't download message." If I send a small photo to the Asha 501, it has no trouble displaying the photo. I have 64MBs of fr

  • Power Mac G4 won't boot in OS X

    I have a number of G4's which have been upgraded to Tiger. I am on the last machine running 9.2.2 and it refuses to boot in 10.4. I have tried the Tiger installation CDs, from a firewire drive with a good copy of Tiger on and from a new internal disk

  • Idvd cleaning up...still...

    Okay, i burnt a handfull of pictures and video clips on a dvd using idvd, took forever, left the computer on over night so it would finish, woke up in the morning dvd had popped out of the drive, but idvd still running, saying cleaning up, and wont l