home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
DP Tool Club 8
/
CDASC08.ISO
/
VRAC
/
LIBERTY.ZIP
/
INVOICE.BAS
< prev
next >
Wrap
BASIC Source File
|
1993-08-31
|
667b
|
27 lines
' open a spreadsheet for invoice entry
open "Invoice Form" for spreadsheet as #1
print #1, "indirect"
print #1, "select B5"
print #1, "format B fixed"
print #1, "cell A1 'Enter a list of 5 numbers below to be totalled:"
print #1, "user B5"
print #1, "user B6"
print #1, "user B7"
print #1, "user B8"
print #1, "user B9"
print #1, "cell B10 '==========="
print #1, "cell A11 'Total"
print #1, "cell B11 b5 b6 b7 b8 b9 sum"
print #1, "cell B12 '==========="
print #1, "cell A13 '+ 5% Tax"
print #1, "cell B13 b11 * 1.05"
print #1, "flush"
input r$
close #1