Excel VBA prompt for cells, then use in relative formula

kitty111222

New Member
Joined
Jul 3, 2024
Messages
2
Office Version
  1. 365
Platform
  1. Windows
Hi,
I am looking for a way to prompt for cell addresses, and then use these in a formula, that I can copy into other cells.
This is an example of my text: - the position of the digits are always the same -
one cell contains a text like: XXXXXXXXX _.30 356.0X 591.5 J 1/3000 - (size is in mms (356*591.5), 3000 sheets per box), another cell the number of boxes: e.g 26, and then I would like to prompt for the result in m2
'
'=(((MID(C4,16,6))*(MID(C4,23,6))*(RIGHT(C4,4))*H4)/1000000) - now the text is in cell C4 and the nr. of boxes in H4. But it's variable in what column the texts are and in what column the quantities.
So, I want to ask 3 questions: in what cell is the text, in what cell is the quantity in boxes, and where do you want the result in m2. The result should be the formula, that I can copy down for the entire column. Hope the question is clear, can someone please help? I have this - but is gives absolute results and not the formula.


On Error GoTo Cancelled

Dim answer As Variant
answer = Application.InputBox("Select cell with the material description", "M2 calculation", vbOKCancel)
If answer = vbCancel Then
GoTo Cancelled
End If



Dim answer2 As Variant
answer2 = Application.InputBox("Select cell with the Qty in BOX", "M2 calculation", vbOKCancel)
If answer2 = vbCancel Then
GoTo Cancelled
End If

Dim answer3 As Variant
answer3 = Application.InputBox("Select cell where you want the m2 amount", "M2 calculation", vbOKCancel)
If answer3 = vbCancel Then
GoTo Cancelled
End If


ActiveCell.Select

ActiveCell.FormulaR1C1 = Mid(answer, 14, 6)

'ActiveCell.Formula = "=(((Mid(answer, 14, 6)) * (Mid(answer, 21, 6)) * (Right(answer, 3)) * answer2 / 1000000))"
'ActiveCell.Offset(1, 0).Range("A1").Select


ActiveCell.Select


Cancelled:

End Sub
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
Try this
VBA Code:
Sub mySub()

On Error Resume Next
Dim answer As Range

Set answer = Application.InputBox( _
Title:="M2 calculation", _
Prompt:="Select cell with the material description", _
Type:=8)
If answer Is Nothing Then Exit Sub
Set answer = Rng.Cells(1, 1)


Dim answer2 As Range
Set answer2 = Application.InputBox( _
Title:="M2 calculation", _
Prompt:="Select cell with the Qty in BOX", _
Type:=8)
If answer2 Is Nothing Then Exit Sub
Set answer2 = Rng.Cells(1, 1)

Dim answer3 As Range
Set answer3 = Application.InputBox( _
Title:="M2 calculation", _
Prompt:="Select cell where you want the m2 amount", _
Type:=8)
If answer3 Is Nothing Then Exit Sub
Set answer3 = Rng.Cells(1, 1)

On Error GoTo Cancelled

[answer3].Formula = "=(((Mid(" & answer.Address(0, 0) & ",14,6))*(Mid(" & answer.Address(0, 0) & ",21,6))*(Right(" & answer.Address(0, 0) & ",3))*" & answer2.Address(0, 0) & "/1000000))"

Cancelled:

End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,220,965
Messages
6,157,119
Members
451,398
Latest member
rjsteward

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