I know this is not datareports but could anyone tell me how I can get the Function1 to do SUM + 17.5% (VAT) for an Invoice I am trying to do?
:rolleyes:
Printable View
I know this is not datareports but could anyone tell me how I can get the Function1 to do SUM + 17.5% (VAT) for an Invoice I am trying to do?
:rolleyes:
I'm not familiar with datareports but just what is Function1 exactly?
Is this what you are looking for??
VB Code:
Public Function Sum(p_val As Double) As Double Sum = p_val + p_val * 0.175 End Function
:wave:
Its a report function in a datareport much like autosum in MSAccess?:)