Results 1 to 27 of 27

Extracting Number from various cell and added them and multiply with a factor

Threaded View

a_driga Extracting Number from... 09-09-2014, 12:51 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 01:43 AM
a_driga Re: Extracting Number from... 09-09-2014, 01:56 AM
a_driga Re: Extracting Number from... 09-09-2014, 02:42 AM
a_driga Re: Extracting Number from... 09-09-2014, 02:42 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 03:07 AM
a_driga Re: Extracting Number from... 09-09-2014, 03:14 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 03:38 AM
a_driga Re: Extracting Number from... 09-09-2014, 04:16 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 04:26 AM
a_driga Re: Extracting Number from... 09-09-2014, 04:48 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 04:57 AM
a_driga Re: Extracting Number from... 09-09-2014, 05:25 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 05:29 AM
a_driga Re: Extracting Number from... 09-09-2014, 05:57 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 06:14 AM
a_driga Re: Extracting Number from... 09-09-2014, 05:48 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 06:13 AM
a_driga Re: Extracting Number from... 09-09-2014, 06:20 AM
lancer102rus Re: Extracting Number from... 09-09-2014, 06:28 AM
a_driga Re: Extracting Number from... 09-09-2014, 09:22 PM
lancer102rus Re: Extracting Number from... 09-09-2014, 09:43 PM
a_driga Re: Extracting Number from... 09-10-2014, 09:15 PM
a_driga Re: Extracting Number from... 09-12-2014, 08:19 AM
lancer102rus Re: Extracting Number from... 09-12-2014, 03:16 PM
a_driga Re: Extracting Number from... 09-14-2014, 10:36 PM
lancer102rus Re: Extracting Number from... 09-14-2014, 11:02 PM
  1. #1
    Registered User
    Join Date
    08-14-2011
    Location
    Jakarta, Indonesia
    MS-Off Ver
    Excel 2007
    Posts
    63

    Extracting Number from various cell and added them and multiply with a factor

    Hi all,

    I am facing a problem in trying to extract a number for variouse cells (within the same row, one at a time) and to multiply them with number.

    The following table can be seen in the attached file along with the macro:

    Sub test()
    
    Application.ScreenUpdating = False
    
    Dim lr1 As Long
    
    lr1 = Range("A" & Rows.Count).End(xlUp).Row
    
    
    j = 1
    sum2 = 0
    sum1 = 0
    
    stcol = 9
    ltcol = 11
    
    const1 = 1
    
    For i = 3 To lr1
        Do While j <= 1 + 3
            If Cells(i, j) <> "" Then
                sum1 = 0
                counter = stcol
                Do While counter <= ltcol
                    ltstr = Len(Cells(i, counter))
                    If ltstr > 0 Then
                        If const1 = j Then
                            For w1 = 1 To ltstr
                                If Mid(Cells(i, counter), w, 1) = Left(Cells(2, j), 1) Then
                                    psac1 = w1 'Position of Character in Question
                                    Exit For
                                End If
                            Next w1
                            
                                If psac1 - 1 = 0 Then
                                    num1 = 1
                                Else
                                    num1 = Mid(Cells(i, counter), 1, (w1 - 1))
                                End If
                                
                            sum1 = sum1 + num1
                        Else
                            For w2 = 1 To ltstr
                                If Mid(Cells(i, counter), w2, 1) = Left(Cells(2, j), 1) Then
                                    psac1 = w1 'Position of Character in Question
                                    Exit For
                                End If
                            Next w2
                            For w1 = 1 To ltstr
                                If Mid(Cells(i, counter), w2, 1) = Left(Cells(2, j - 1), 1) Then
                                    psac2 = w2 'Position of Character in Question
                                    Exit For
                                End If
                            Next w1
                            
                                If w2 - w1 = 1 Then
                                    num1 = 1
                                Else
                                    num1 = Mid(Cells(i, counter), w1 + 1, (w2 - w1))
                                End If
                                
                            sum1 = sum1 + num1
                        End If
                    End If
                    counter = counter + 1
                Loop
            sum2 = sum2 + (sum1 * Cells(i, j + 12))
            Cells(i, 13) = sum2
            End If
            j = j + 1
        Loop
    Next i
    
    Application.ScreenUpdating = True
    End Sub
    Column L contains the manual calculation that I made as reference to check whether the code works or not.

    For example Cell L5 basically is 120 times 0.1. And Cell L9 is:
    (120 x 0.2) + (120 x 0.2) + (120 x 0.2) + (10 x 0.1) + (10 x 0.1) + (10 x 0.1) + 0.5 = 75.5

    And the code above basically trying to copy the calculation above automatically.

    It would be great if I could get some assistance to make my code works.

    Thanks in advance
    Attached Images Attached Images
    Attached Files Attached Files

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Take cell with text and number and multiply with number
    By smuqeet in forum Excel Formulas & Functions
    Replies: 4
    Last Post: 06-06-2012, 04:22 PM
  2. How to multiply all cells in array by factor
    By rhauff in forum Excel General
    Replies: 2
    Last Post: 03-21-2006, 11:01 AM
  3. [SOLVED] multiply all values in all cells by a factor
    By raoulreulen@hotmail.com in forum Excel General
    Replies: 1
    Last Post: 03-14-2006, 05:55 PM
  4. [SOLVED] Multiply one cell by a factor and make that result round
    By Machel_C in forum Excel Formulas & Functions
    Replies: 7
    Last Post: 03-15-2005, 04:06 PM
  5. [SOLVED] Multiply cells in range by corresponding factor
    By tbargsta@earthlink.net in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 01-18-2005, 07:06 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1