simple vba syntax question

StrawberryDreams

New Member
Joined
Mar 26, 2022
Messages
46
Office Version
  1. 365
Platform
  1. Windows
  2. MacOS
  3. Mobile
Still learning vba...

I have a simple Data entry User form (sourceSheet) , that is currently taking the cell B2 and copying it into another worksheet table (dataSheet)
The following code works:

dataSheet.Cells(nextRow, 2).Value = sourceSheet.Range("B2").Value



I would like to change what it does so the value it is copying B2 is divided by 100. How do
I write the VBA to do that ---- the following does not work :

dataSheet.Cells(nextRow, 2).Formula = "=sourceSheet.Range(B2).Value / 100"

My goal is to take the value the user enter in the data entry sheet and turn it into percent form in the data table.
Cheers
 
Note that this is not correct:
VBA Code:
Range("C7" & i)
Think about it. This will do C71, C72, etc., and then go to C710!
You have to remove the hard-coded row number after the 7, i.e.
VBA Code:
Range("C" & i)

Also, if you want to move to the next row every time for the other range, you will need to change this:
' Get the next empty row from the Data sheet.
VBA Code:
nextRow = dataSheet.Range("A" & dataSheet.Rows.Count).End(xlUp).Offset(1).Row
and these references:
VBA Code:
dataSheet.Cells(nextRow, 2).Value = sourceSheet.Range("C" & i).Value / 100

to this:
VBA Code:
nextRow = dataSheet.Range("A" & dataSheet.Rows.Count).End(xlUp).Row
and this:
VBA Code:
dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("C" & i).Value / 100
cool thanks, I got a bug in the " dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("C" & i).Value / 100 "

VBA Code:
Sub Store_Data_Basic()
' Takes data from one worksheet and stores in in the next empty row on another worksheet.

Dim sourceSheet As Worksheet
Dim dataSheet As Worksheet
Dim nextRow As Integer


 
' Make some sheet variables so we can use those instead of hard-coding sheet references in the code.
Set sourceSheet = Sheets("DataEntry")
Set dataSheet = Sheets("Data")

               
' Get the next empty row from the Data sheet.
nextRow = dataSheet.Range("A" & dataSheet.Rows.Count).End(xlUp).Row



'Set For next loop to copy cells with calculation into Data Sheet table

For i = 1 To 22

Select Case sourceSheet.Range("B4")
    Case "Percent %"
        dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("C" & i).Value / 100
    Case "grams"
        dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("C" & i).Value * 1000
    Case "ppm"
        dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("C" & i).Value * 10

End Select

Next i


End Sub
 
Upvote 0

Excel Facts

Quick Sum
Select a range of cells. The total appears in bottom right of Excel screen. Right-click total to add Max, Min, Count, Average.
Note that this is not correct:
VBA Code:
Range("C7" & i)
Think about it. This will do C71, C72, etc., and then go to C710!
You have to remove the hard-coded row number after the 7, i.e.
VBA Code:
Range("C" & i)

Also, if you want to move to the next row every time for the other range, you will need to change this:
' Get the next empty row from the Data sheet.
VBA Code:
nextRow = dataSheet.Range("A" & dataSheet.Rows.Count).End(xlUp).Offset(1).Row
and these references:
VBA Code:
dataSheet.Cells(nextRow, 2).Value = sourceSheet.Range("C" & i).Value / 100

to this:
VBA Code:
nextRow = dataSheet.Range("A" & dataSheet.Rows.Count).End(xlUp).Row
and this:
VBA Code:
dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("C" & i).Value / 100
Kinda worked.
Copied, but didn't place them into the table horizontally.

Sorry had to repost - didn't copy the full mini window for XLBB

Basic Nutrient Calculator3.xlsm
ABCD
1Data Entry
2Unit choice%
3
4ProductValue
5apple3
6pear4
7grape2
8
DataEntry
Cells with Data Validation
CellAllowCriteria
B2:B3List%, grams, kg


Basic Nutrient Calculator3.xlsm
ABCD
1Data Table
2UnitApplePearGrape
3
4
5
6
7
80.03
90.04
100.02
Data2


VBA Code:
Sub Store_Data_Basic()
' Takes data from one worksheet and stores in in the next empty row on another worksheet.

Dim sourceSheet As Worksheet
Dim dataSheet As Worksheet
Dim nextRow As Integer


 
' Make some sheet variables so we can use those instead of hard-coding sheet references in the code.
Set sourceSheet = Sheets("DataEntry")
Set dataSheet = Sheets("Data2")

               
' Get the next empty row from the Data sheet.
nextRow = dataSheet.Range("B" & dataSheet.Rows.Count).End(xlUp).Row




'Set For next loop to copy cells with calculation into Data Sheet table

For i = 5 To 7

Select Case sourceSheet.Range("B2")
    Case "%"
        dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("B" & i).Value / 100
    Case "grams"
        dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("B" & i).Value * 1
    Case "kg"
        dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("B" & i).Value * 1000

End Select

Next i


End Sub
 
Upvote 0
OK, let's take a big step back here. This "simple" VBA question has turned into quite a bit more (as they often do).
I don't think your code is set up to do anything remotely like what it looks like you want to do.

Can you please post what you have to start with, and then show us exactly what you want to end up with (and explain the logic behind it)?
And please do NOT oversimplify it (lest you may get an oversimplified answer that won't work on your real data structure).
Rather than trying to fix up faulty code, I prefer to start from scratch, when I have a clear vision of what exactly it is you are trying to accomplish.
 
Upvote 0
OK, let's take a big step back here. This "simple" VBA question has turned into quite a bit more (as they often do).
I don't think your code is set up to do anything remotely like what it looks like you want to do.

Can you please post what you have to start with, and then show us exactly what you want to end up with (and explain the logic behind it)?
And please do NOT oversimplify it (lest you may get an oversimplified answer that won't work on your real data structure).
Rather than trying to fix up faulty code, I prefer to start from scratch, when I have a clear vision of what exactly it is you are trying to accomplish.
Sorry I thought it might have been straightforward - but shows how inexperienced I am with VBA and excel.
Originally my code worked when I wanted to simply copy cells from one worksheet and place them into a second worksheet table.

The issues as you've pointed out are when I wanted to add a calculation and place them the same way. Ive placed an XL2bb screenshot showing what I would like with examples. My original code which works but doesn't have the calculation added to it. Also for some weird reason if you have cleared the data table it will not properly place data into the table unless the first row has been filled.

Basic data calculator test.xlsm
ABCDEFG
1Data Entry Worksheet
2Unit choicekg
3pressing the button will copy
4ProductValueData entry form over to
5apple3the data table , then clear
6pear2the data entry cells
7grape5
8
9
10Data Table Worksheet
11unitApplePearGrape
12first row cannot be blankbefore newdata
13grams249
14%1912
15kg325
16
17What I want to be placed in the Data table is the following :
18The unit will convert all relevant data to grams
19unitApplePearGrape
20first row cannot be blankbefore newdatavba calculation
21grams249if = "grams" * 1
22%0.010.090.12if = "%" / 100
23kg300020005000if = "kg" * 1000
24
DataEntry
Cells with Data Validation
CellAllowCriteria
B2:B3List%, grams, kg



VBA Code:
Sub Store_Data()

' Takes data from one worksheet and stores in in the next empty row on another worksheet.

Dim sourceSheet As Worksheet
Dim dataSheet As Worksheet
Dim nextRow As Integer


 
' Make some sheet variables so we can use those instead of hard-coding sheet references in the code.
Set sourceSheet = Sheets("DataEntry")
Set dataSheet = Sheets("DataTable")

               
' Get the next empty row from the Data sheet.
nextRow = dataSheet.Range("B" & dataSheet.Rows.Count).End(xlUp).Offset(1).Row


'Input Unit from DataEntry to DataTable Sheet

dataSheet.Cells(nextRow, 1).Value = sourceSheet.Range("B2").Value

'Input Values from DataEntry to DataTable Sheet

dataSheet.Cells(nextRow, 2).Value = sourceSheet.Range("B5").Value
dataSheet.Cells(nextRow, 3).Value = sourceSheet.Range("B6").Value
dataSheet.Cells(nextRow, 4).Value = sourceSheet.Range("B7").Value



End Sub


'Following Code is from code Joe originally provided.
'Set For next loop to copy cells with calculation into Data Sheet table

'For i = 5 To 7

'Select Case sourceSheet.Range("B2")
    'Case "%"
        'dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("B" & i).Value / 100
    'Case "grams"
       ' dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("B" & i).Value * 1
    'Case "kg"
        'dataSheet.Cells(nextRow + i, 2).Value = sourceSheet.Range("B" & i).Value * 1000

'End Select

'Next i


'End Sub
 
Upvote 0
OK, let's take a big step back here. This "simple" VBA question has turned into quite a bit more (as they often do).
I don't think your code is set up to do anything remotely like what it looks like you want to do.

Can you please post what you have to start with, and then show us exactly what you want to end up with (and explain the logic behind it)?
And please do NOT oversimplify it (lest you may get an oversimplified answer that won't work on your real data structure).
Rather than trying to fix up faulty code, I prefer to start from scratch, when I have a clear vision of what exactly it is you are trying to accomplish.
Ok I figured it out!

Your code works great it's just needed one line to be an i-3 instead of i+2. I kept the offset code which keeps the values placed horizontally instead of vertically which was happening when the offset was removed. But then it placed the code 7 columns to the left of the table but at least all in a single row as wanted. So I took the value of i and had to minus an amount to get it back into the table properly.

VBA Code:
Sub Store_Data()

' Takes data from one worksheet and stores in in the next empty row on another worksheet.

Dim sourceSheet As Worksheet
Dim dataSheet As Worksheet
Dim nextRow As Integer


 
' Make some sheet variables so we can use those instead of hard-coding sheet references in the code.
Set sourceSheet = Sheets("DataEntry")
Set dataSheet = Sheets("DataTable")

               
' Get the next empty row from the Data sheet.
nextRow = dataSheet.Range("B" & dataSheet.Rows.Count).End(xlUp).Offset(1).Row

For i = 5 To 7

Select Case sourceSheet.Range("B2")
    Case "%"
        dataSheet.Cells(nextRow, i - 3).Value = sourceSheet.Range("B" & i).Value / 100
    Case "grams"
        dataSheet.Cells(nextRow, i - 3).Value = sourceSheet.Range("B" & i).Value * 1
    Case "kg"
        dataSheet.Cells(nextRow, i - 3).Value = sourceSheet.Range("B" & i).Value * 1000

End Select

Next i




End Sub••••ˇˇˇˇ


thanks again Joe for all your help and learning !
 
Upvote 0
You are welcome.
Glad you were able to figure it out overnight when I was off-line!
 
Upvote 0

Forum statistics

Threads
1,215,412
Messages
6,124,761
Members
449,187
Latest member
hermansoa

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top