Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 122
Default How to Insert Dashes

Hello:

In various cells, I have such data as "1000001p" How can I have Excel
automatically change it to "1000-001P" or even "1000-001-P"?

You see, I need dashes inserted and I need the last alpha character to be
capitalized.

Thanks!

childofthe1980s
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,339
Default How to Insert Dashes

Hi,
Assuming data in A1, put the following in B1:

=TEXT(LEFT(A1,LEN(A1)-1),"0000-000-") & UPPER(RIGHT(A1,1))

Change the "0000-000-" to suit your needs.

HTH


"childofthe1980s" wrote:

Hello:

In various cells, I have such data as "1000001p" How can I have Excel
automatically change it to "1000-001P" or even "1000-001-P"?

You see, I need dashes inserted and I need the last alpha character to be
capitalized.

Thanks!

childofthe1980s

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,119
Default How to Insert Dashes

Here is a formula. It assumes that 10000001p is in Cell A1

=LEFT(A1,5)&"-"&MID(A1,6,3)&"-"&UPPER(RIGHT(A1,1))

--
HTH...

Jim Thomlinson


"childofthe1980s" wrote:

Hello:

In various cells, I have such data as "1000001p" How can I have Excel
automatically change it to "1000-001P" or even "1000-001-P"?

You see, I need dashes inserted and I need the last alpha character to be
capitalized.

Thanks!

childofthe1980s

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
Is there a way to insert dashes in a column of numbers Mickie New Users to Excel 7 April 30th 23 11:43 AM
Need to change numbers with dashes to numbers with no dashes cheryltraining Excel Discussion (Misc queries) 3 November 3rd 09 06:23 PM
Dashes I want Dashes Marilyn Excel Discussion (Misc queries) 3 January 3rd 08 11:32 PM
What are dashes for WLMPilot Excel Discussion (Misc queries) 3 November 27th 06 11:03 PM
How to insert a repeating dash in phone numbers without dashes in. LemonLiptonTea New Users to Excel 3 February 5th 05 05:18 PM


All times are GMT +1. The time now is 07:31 PM.

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

About Us

"It's about Microsoft Excel"