How do I format a user defined function output as short date?

jbenfleming

New Member
Joined
Mar 30, 2017
Messages
34
I have worksheet function I made, Days90(). Its purpose is to output the date that is 90 days from the current day, not including weekends. Everything with it works except it is output as a serial instead of as a date. For example, if I use the function today it will output 43311 instead of 7/30/2018. Code:

Code:
Public Function Days90() As Date
Days90 = Date
If VBA.Format(Days90 + 90, "dddd") = "Saturday" Then
    Days90 = VBA.Format(Days90 + 92, "Short Date")
ElseIf VBA.Format(Date + 90, "dddd") = "Sunday" Then
    Days90 = VBA.Format(Days90 + 91, "Short Date")
Else
    Days90 = VBA.Format(Days90 + 90, "Short Date")
End If
End Function

I thought that the formatting of the result would show up on the worksheet. Any ideas?
 
Last edited:

Excel Facts

Select all contiguous cells
Pressing Ctrl+* (asterisk) will select the "current region" - all contiguous cells in all directions.
hi, I think you would need to define the function as Public Function Days90() as String

That said, if you did do that the date would be useless elsewhere in your spreadsheet, you would be better to allow the return of the date as a serial number as you can then use it as the basis of other calculations. If you need it in short date format, simply format the cell in which the function is placed as a Short Date.

Hope that helps.

Regards
 
Upvote 0
This puts Days90 in cell A1 with whatever format you set in the function.
Code:
Function Days90(Dte As Date) As Variant
Days90 = Dte + 90
Days90 = Format(Days90, "Short Date")  'change format to suit
End Function
Sub test()
[A1] = Days90(Date)
End Sub
 
Upvote 0
Defining as string did not work however you did give me the idea to define it as variant, which did the trick. Thanks!
 
Upvote 0

Forum statistics

Threads
1,214,945
Messages
6,122,397
Members
449,081
Latest member
JAMES KECULAH

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