Advertisement

09.10.2008 at 03:05AM PDT, ID: 23718588
[x]
Attachment Details
[x]
The Solution Rating System

With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.

  • The Grade of the Solution
  • The Zone Rank of the Expert Providing the Solution
  • The Number of Author and Expert Comments
  • The Number of Experts Contributing
  • The Feedback of the Community

Your Input Matters
Because of the way the system is set up, the most important variable in this equation is you. As a member of Experts Exchange, you are able to cast your vote on the quality of the solutions in regard to how complete, accurate, helpful and easy to understand each solution is. When you provide your feedback, each rating is adjusted accordingly. So, if you see a solution that has a poor rating that you think is a good solution, let us know by rating it. As you do, the rating will be adjusted and will become more accurate for other members of our site.

If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support.

Thank you!

8.7

Set type of new cells to text

Asked by thijs321 in Visual Basic Programming, Microsoft Excel Spreadsheet Software

Tags: , , ,

I have a macro that splits cells containing multiple lines of text into new rows.
When it does, numbers in a text are converted to integers (example: '0001' as text becomes '1')
I know this is possible using NumberFormat="@". I didn't write the macro so i'm not completely sure how it works and therefor i'm not sure how or where to include this.
I have included a picture highlighting the problem.

Appreciate the effort!
Greets, MichaelStart Free Trial
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
Sub SplitCells()
'  --look for Chr(10) from bottom
   Application.ScreenUpdating = False
   Application.Calculation = xlCalculationManual
    
    Dim nr As Integer
    nr = 1  ' The cell to start from 1=A, 2=B etc
    Dim i As Long, j As Long, k As Long
    For i = Cells(Cells.Rows.Count, "A").End(xlUp).Row _
                      To 1 Step -1
      j = Len(Cells(i, 2)) - Len(Replace(Cells(i, 2), _
                            Chr(10), "")) / Len(Chr(10))
      If j > 0 Then
        Rows(i + 1).Resize(j).Insert
        For k = 0 To j - 1
          '-- start column (default is A)
          Cells(i + k + 1, nr) = Mid(Cells(i + k, nr), _
             InStr(1, Cells(i + k, nr), _
             Chr(10), vbTextCompare) + 1)
          Cells(i + k, nr) = Left(Cells(i + k, nr), _
             InStr(1, Cells(i + k, nr), _
             Chr(10), vbTextCompare) - 1)
          '-- column B
          Cells(i + k + 1, (nr + 1)) = Mid(Cells(i + k, (nr + 1)), _
             InStr(1, Cells(i + k, (nr + 1)), _
             Chr(10), vbTextCompare) + 1)
          Cells(i + k, (nr + 1)) = Left(Cells(i + k, (nr + 1)), _
             InStr(1, Cells(i + k, (nr + 1)), _
             Chr(10), vbTextCompare) - 1)
 
// Similar code
// Similar code
 
End Sub
Attachments:
 
an image of the before and after situation highlighting the problem
an image of the before and after situation highlighting the problem
 
[+][-]09.10.2008 at 04:10AM PDT, ID: 22436999

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 04:11AM PDT, ID: 22437003

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 04:12AM PDT, ID: 22437009

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 04:45AM PDT, ID: 22437256

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 04:56AM PDT, ID: 22437332

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 04:58AM PDT, ID: 22437340

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 05:47AM PDT, ID: 22437709

At Experts Exchange, members can ask their questions to thousands of technology professionals, also known as Experts. Experts compete and collaborate to answer those questions by leaving comments like this one.

Start your 7-day free trial to view this Expert Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 06:11AM PDT, ID: 22437921

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
[+][-]09.10.2008 at 06:39AM PDT, ID: 22438200

View this solution now by starting your 7-day free trial. Setting up your free trial is quick, easy, and secure. We will return you to this solution, unlocked, when you're done.

 

About this solution

Zones: Visual Basic Programming, Microsoft Excel Spreadsheet Software
Tags: Microsoft, Excel, 2007, Visual Basic
Sign Up Now!
Solution Provided By: Psychotec
Participating Experts: 2
Solution Grade: A
 
 
[+][-]09.10.2008 at 06:44AM PDT, ID: 22438256

Often, when Experts are collaborating with members who have asked questions, they will request additional information about the problem. Askers respond with an author comment like this one.

Start your 7-day free trial to view this Author Comment or ask the Experts your question.

 
 
Loading Advertisement...
20080716-EE-VQP-32 / EE_QW_2_20070628