Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi,
I need a user defined function to return formatted output function userdefined(arg1, arg2) as double userdefined = arg1/arg2 end function I want the output as a percentage. Pls let me know the statement for that. Thanks. |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
UDF's can not modify formats. A function called from within Code can act upon
any cells to change formats and whatever else that they want. When called from a sheet however UDF's can ONLY return values to the cell that they are in. They can not modify the values of cells that they are not in and they can not modify the format of any cells. Just one of those rules... -- HTH... Jim Thomlinson "Salman" wrote: Hi, I need a user defined function to return formatted output function userdefined(arg1, arg2) as double userdefined = arg1/arg2 end function I want the output as a percentage. Pls let me know the statement for that. Thanks. |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Bonsoir Salman « Salem »
si j'ai bien compris voilÃ* ce que tu cherchais Function userdefined(arg1, arg2) Application.Volatile userdefined = FormatPercent(arg1 / arg2, 0) End Function Abed_H "Salman" a écrit : Hi, I need a user defined function to return formatted output function userdefined(arg1, arg2) as double userdefined = arg1/arg2 end function I want the output as a percentage. Pls let me know the statement for that. Thanks. |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You mean ?
function userdefined(arg1, arg2) as double userdefined = arg1/arg2 * 100 end function NickHK "Salman" wrote in message ... Hi, I need a user defined function to return formatted output function userdefined(arg1, arg2) as double userdefined = arg1/arg2 end function I want the output as a percentage. Pls let me know the statement for that. Thanks. |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
User Defined Function returning #Value! | Excel Worksheet Functions | |||
Returning Values From a User-Defined Type | Excel Programming | |||
User Defined Fuction Returning Range Help | Excel Programming | |||
User Defined Function: Format Output | Excel Programming | |||
AutoExpanding User Defined Function Output | Excel Programming |