BASIC to VBA

lgroulx2000

Board Regular
Joined
Jan 6, 2009
Messages
100
Office Version
  1. 365
Platform
  1. Windows
Hi,
How do I convert this BASIC code to VBA for output to cell A1?

46 CC$ = "######### ######### ########## ######## LBS INCHES SQUARED"
964 LPRINT USING CC$;A*IX,A*IY,A*IZ,A*IIXZ
 

Excel Facts

How to total the visible cells?
From the first blank cell below a filtered data set, press Alt+=. Instead of SUM, you will get SUBTOTAL(9,)
That's a pretty context-free question.

Code:
Sub x()
    Dim A           As Double
    Dim IX          As Long
    Dim iY          As Long
    Dim iZ          As Long
    Dim iIXZ        As Long
    Range("A1").Value = Format(A * IX, "0 ") & _
                        Format(A * iY, "0 ") & _
                        Format(A * iZ, "0 ") & _
                        Format(A * iIXZ, "0 ") & _
                        " LBS INCHES SQUARED"
End Sub
 
Upvote 0

Forum statistics

Threads
1,225,644
Messages
6,186,153
Members
453,339
Latest member
Stu61

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