Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 90
Default How do I exclude the thousand sign "k" for a value

I have imported values from a website using a web query which I will use in
my formulas. However these values are abbreviated with "k" which stands for
thousand, and Microsoft Excel does not seem to be able to work with this
sign. Is there anyway in which I can alter the "k" into a thousand without
touching the web query, and thus enable it to be used in my fomulas?
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,805
Default How do I exclude the thousand sign "k" for a value

Find K and replace with nothing...
Then enter 1000 anywhere, copy it, choose the data you want to convert to
thousands and right-click, choose Paste Special|Multiply

"Fred" wrote:

I have imported values from a website using a web query which I will use in
my formulas. However these values are abbreviated with "k" which stands for
thousand, and Microsoft Excel does not seem to be able to work with this
sign. Is there anyway in which I can alter the "k" into a thousand without
touching the web query, and thus enable it to be used in my fomulas?

  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,344
Default How do I exclude the thousand sign "k" for a value

Hi,

I think you should add a field beside the web query return range which
creates a new column to handle the K. The problem with Replace is that
everytime you refresh your query the K will be back. And worse if the query
is set to automatically refresh every 10 minutes, you would need to write
code to handle the Replace command automatically.

For example the formula
=--LEFT(G2,LEN(G2)-1)
Where entries like 123 K are in column G.

You can also right click the query range and choose Data Range Properties,
and check the option Fill down formulas in columns adjacent to data.

If this helps, please click the Yes button
--
Thanks,
Shane Devenshire


"Fred" wrote:

I have imported values from a website using a web query which I will use in
my formulas. However these values are abbreviated with "k" which stands for
thousand, and Microsoft Excel does not seem to be able to work with this
sign. Is there anyway in which I can alter the "k" into a thousand without
touching the web query, and thus enable it to be used in my fomulas?

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 37
Default How do I exclude the thousand sign "k" for a value

Try if formula:

=IF(ISERR(FIND("k",A1,1))=FALSE,LEFT(A1,(FIND("k", A1,1)-1))*1000,A1)


--
Kind Regards,
Satti Charvak
Only an Excel Enthusiast
Noida, India


"ShaneDevenshire" wrote:

Hi,

I think you should add a field beside the web query return range which
creates a new column to handle the K. The problem with Replace is that
everytime you refresh your query the K will be back. And worse if the query
is set to automatically refresh every 10 minutes, you would need to write
code to handle the Replace command automatically.

For example the formula
=--LEFT(G2,LEN(G2)-1)
Where entries like 123 K are in column G.

You can also right click the query range and choose Data Range Properties,
and check the option Fill down formulas in columns adjacent to data.

If this helps, please click the Yes button
--
Thanks,
Shane Devenshire


"Fred" wrote:

I have imported values from a website using a web query which I will use in
my formulas. However these values are abbreviated with "k" which stands for
thousand, and Microsoft Excel does not seem to be able to work with this
sign. Is there anyway in which I can alter the "k" into a thousand without
touching the web query, and thus enable it to be used in my fomulas?

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
How to "sign" macro with "digital certificate"? Clueless in Seattle New Users to Excel 5 March 23rd 08 02:48 AM
how do I count only lower case "x" and exclude upper case "X" jbeletz Excel Worksheet Functions 3 October 14th 06 10:50 PM
How do display a "+" or "-" sign when hiding columns? DTI Tustin Setting up and Configuration of Excel 1 July 13th 06 01:21 PM
convert "15000" to "Fifteen thousand" in excel cell? anurag Excel Worksheet Functions 1 May 4th 06 07:58 AM


All times are GMT +1. The time now is 09:05 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"