98.7% Of all customers recommend us, we're so confident about our results we publish all reviews and stats
View Live Stats View ReviewsForum home » Delegate support and help forum » Microsoft Excel VBA Training and help » VBA
VBA
Resolved · Low Priority · Version 2003
Rafia has attended:
Excel Advanced course
Excel VBA Intro Intermediate course
VBA
Convert formulae into macros
RE: VBA
Hi Rafia
I guess you want to know if you can create some code that automatically does a calculation without showing the user how it was done
For this I suggest creating a Function. To do this:
In a Module write
Public Function MyFunctionName (Val1 As <Type>, Val2 As <Type>, etc) As <Type>
MyFunctionName = <<The calculation required>>
End Function
Then use the function as any other function in your workbook.
Hope this helps
Carlos
Tue 16 Dec 2008: Automatically marked as resolved.
Training information:
Welcome. Please choose your application (eg. Excel) and then post your question. Our Microsoft Qualified trainers will then respond within 24 hours (working days). Frequently Asked Questions
Any suggestions, questions or comments? Please post in the Improve the forum thread. |
Excel tip:Switching Between SpreadsheetsAs the Alt+Tab key switches between loaded applications or files, Ctrl+Tab switches between loaded or open Excel files. Hold down the Ctrl key until you have tabbed to the correct spreadsheet. |