Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 502889
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T06:20:15+00:00 2026-05-13T06:20:15+00:00

I have the following values in a single cell let be A1 1234 567

  • 0

I have the following values in a single cell let be A1

1234
567
454

Likewise all the A(N) are filled with values. N various from 1000 to 1500

I want this to get converted as

1234;567;454 

Any shortcut available?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-13T06:20:16+00:00Added an answer on May 13, 2026 at 6:20 am

    Edit: Sorry, had not read your questions properly…

    You could write a vba-script like that:

    Sub test()
      Dim result As String
      result = Replace(ActiveCell.value, Chr(10), ";")
      ActiveCell.Offset(1, 0).Select
      ActiveCell.value = result
    End Sub
    

    It will take the active cell, replace all newlines by semicolons and put the result in the next line.

    Edit: Another version doing this for multiple cells:

    Sub test()
      Dim value As String
      Do
        value = ActiveCell.value
        If (value = "") Then Exit Do
        ActiveCell.Offset(0, 1).value = Replace(ActiveCell.value, Chr(10), ";")
        ActiveCell.Offset(1, 0).Select
      Loop While (True)
    End Sub
    

    This version will start at the active cell, and loop through all cell below until it finds an empty cell.

    The replaced value is written into the cell next to the original one. If you want to replace the original value, remove .Offset(0, 1).

    The second parameter is the value to be replaced, it’s Chr(10), the Newline character in our case.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following table: I want to insert values from the MySQL workbench.
I have the following Jquery that returns values from a dialog Box and fills
I have the following values that I want to place into a mysql db
lets say i have the following RGB values: R:129 G:98 B:87 Photoshop says the
I have the following table and values: create table TreeTable ( ID int primary
I have an array with the following values asd sdf dsdf 1sadf *sdf !sdf
I have a property column which can have a subset of the following values
Lets say I have an array numbers that contains the following values: int numbers
I'm sorry about the naive question. I have the following: public Array Values {
I have the following code: def add_record(self,values): self.sql.execute(INSERT INTO TEST VALUES (?,?) % values)

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.