+ Reply to Thread
Results 1 to 4 of 4

Remove % and return only integer value

Hybrid View

  1. #1
    Forum Contributor
    Join Date
    02-23-2013
    Location
    Bangalore
    MS-Off Ver
    2010
    Posts
    130

    Remove % and return only integer value

    Hi All,

    I have a row where in the values enetered are in %..

    like

    1%	2%	3%	4%	5%
    i am using the below formula in other cell to get these values

    =IF(INDEX($1:$1,ROW(A1))="","",(INDEX($1:$1,ROW(A1))))
    now the problem is, this will return the value by deviding it by 100..like below
    0.01
    0.02
    0.03
    0.04
    0.05
    but i want a result like below without % symbol.
    1
    2
    3
    4
    5
    also if there is any blank cell in the input then the resultant cell should also show a blank cell..

    Please help

    Thank you

  2. #2
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: Remove % and return only integer value

    now the problem is, this will return the value by deviding it by 100..like below
    maybe multiply it by 100


    =IF(INDEX($1:$1,ROW(A1))="","",(INDEX($1:$1,ROW(A1))*100))
    I think people forget the word "THANK YOU!!!!" Do you still know it???

    There is a little star ( ADD REPUTATION ) below those person who helped you. Click it to say your "PRIVATE APPRECIATION TO THEIR EFFORT ON THEIR CONTRIBUTIONS "

    Regards,
    Vladimir

  3. #3
    Forum Contributor
    Join Date
    02-23-2013
    Location
    Bangalore
    MS-Off Ver
    2010
    Posts
    130

    Re: Remove % and return only integer value

    Quote Originally Posted by vlady View Post
    maybe multiply it by 100


    =IF(INDEX($1:$1,ROW(A1))="","",(INDEX($1:$1,ROW(A1))*100))
    Strange!!

    I did the same before which didnt work (may be i was missing something before).. but now after u gave this formula, it is working like a charm

    Thanks a lot..

  4. #4
    Forum Moderator vlady's Avatar
    Join Date
    09-22-2011
    Location
    Philippines - OLSHCO -Guimba-Nueva Ecija
    MS-Off Ver
    2021
    Posts
    4,366

    Re: Remove % and return only integer value

    Your welcome anytime, cheers!!!

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1