Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Hi, Anyones suggestions on this would be greatly appreciated. I have a dataset that is in this format 997.46 USD 89.87 USD 3966.40 USD I need to get an output from excel in another column that has 997 89 3966 I believe i should be using a combinations of the LEN and FIND functions, but I have been unsuccessful. Any Ideas? Thanks:) -- austi82110 ------------------------------------------------------------------------ austi82110's Profile: http://www.excelforum.com/member.php...o&userid=30080 View this thread: http://www.excelforum.com/showthread...hreadid=497607 |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Try
=TRUNC(SUBSTITUTE(A1,"USD","")) -- Regards, Peo Sjoblom "austi82110" wrote in message ... Hi, Anyones suggestions on this would be greatly appreciated. I have a dataset that is in this format 997.46 USD 89.87 USD 3966.40 USD I need to get an output from excel in another column that has 997 89 3966 I believe i should be using a combinations of the LEN and FIND functions, but I have been unsuccessful. Any Ideas? Thanks:) -- austi82110 ------------------------------------------------------------------------ austi82110's Profile: http://www.excelforum.com/member.php...o&userid=30080 View this thread: http://www.excelforum.com/showthread...hreadid=497607 |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
One way:
=INT(SUBSTITUTE(UPPER(A1)," USD","")) austi82110 wrote: Hi, Anyones suggestions on this would be greatly appreciated. I have a dataset that is in this format 997.46 USD 89.87 USD 3966.40 USD I need to get an output from excel in another column that has 997 89 3966 I believe i should be using a combinations of the LEN and FIND functions, but I have been unsuccessful. Any Ideas? Thanks:) -- austi82110 ------------------------------------------------------------------------ austi82110's Profile: http://www.excelforum.com/member.php...o&userid=30080 View this thread: http://www.excelforum.com/showthread...hreadid=497607 -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() You can try: =LEFT(A1,FIND(".",A1)-1) -- Vito ------------------------------------------------------------------------ Vito's Profile: http://www.excelforum.com/member.php...o&userid=29182 View this thread: http://www.excelforum.com/showthread...hreadid=497607 |
#5
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() austi82110 Wrote: Hi, Anyones suggestions on this would be greatly appreciated. I have a dataset that is in this format 997.46 USD 89.87 USD 3966.40 USD I need to get an output from excel in another column that has 997 89 3966 I believe i should be using a combinations of the LEN and FIND functions, but I have been unsuccessful. Any Ideas? Thanks:) You can try: =INT(LEFT(A1,FIND(".",A1)-1)) -- Vito ------------------------------------------------------------------------ Vito's Profile: http://www.excelforum.com/member.php...o&userid=29182 View this thread: http://www.excelforum.com/showthread...hreadid=497607 |
#6
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Assuming you will ALWAYS have the decimal point followed by 2 digits followed by " USD" then: =VALUE(LEFT(A1,LEN(A1)-7)) to have your final result numeric =LEFT(A1,LEN(A1)-7) to have your final result text -- Cutter ------------------------------------------------------------------------ Cutter's Profile: http://www.excelforum.com/member.php...fo&userid=9848 View this thread: http://www.excelforum.com/showthread...hreadid=497607 |
#7
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]() Thanks for your input! Ill learn the variations of these formulas now, thanks! -- austi82110 ------------------------------------------------------------------------ austi82110's Profile: http://www.excelforum.com/member.php...o&userid=30080 View this thread: http://www.excelforum.com/showthread...hreadid=497607 |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Is it possible? | Excel Worksheet Functions | |||
Formula problem. | Excel Worksheet Functions | |||
Question about using the right or left formula | Excel Discussion (Misc queries) | |||
Creating a check mark box | Setting up and Configuration of Excel | |||
How do I drag a formula from right to left columns instead of rig. | Excel Discussion (Misc queries) |