Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Read-Only Program Inputs InUseNO or InUSeYES in folder error 53

It's Velouria, not Velouris. 😉 Given the name of the sample file you posted, do you have a folder called: H:PROJECT-OPSMultipleUsersI...

5 years ago
Forum
Reply
RE: Returning values left and right of specific characters

FWIW, you could simplify E2 to: =LEFT(A2,FIND("-",A2&"-")-1)

5 years ago
Reply
RE: Read-Only Program Inputs InUseNO or InUSeYES in folder error 53

You're still missing a backslash on the end of your FileControllerFolder constant.

5 years ago
Forum
Reply
RE: Sharing user functions and macros between multiple computers on same network

You'll probably need a menu system for running those macros, since macros in an add-in do not appear in the macros dialog.

5 years ago
Reply
RE: prevent two users from editing the same file at the same time

Your Const line is completely wrong. It should be: Const FileControlFolder As String = "C:DatabaseFilesInUse"

5 years ago
Forum
Reply
RE: Lookup value between two dates - help!

What result do you want for dates that are not within any of the term periods?

5 years ago
Reply
RE: Facing error in Vlookup

To cater for either format you could use: =IFERROR(VLOOKUP(TEXT(J4,"0"),C:D,2,0),VLOOKUP(J4,C:D,2,0))

5 years ago
Reply
RE: How to define season by months that cover separate years?

For what it's worth, you could also do this: =IF(MONTH(T2)=1,YEAR(T2)-1,IF(TEXT(T2,"mmdd")>="0915",YEAR(T2),"Out of season"))

5 years ago
Reply
RE: Excel docs with Macros - Emailing

They should work, assuming you enable content when opening the attachment from the email. However, any code in the Workbook_Open event that uses Appli...

5 years ago
Forum
Reply
RE: How to define season by months that cover separate years?

I'd do something like this: =IF(AND(MONTH(T2)>1,TEXT(T2,"mmdd")<"0915"),"Outside Season",IF(MONTH(T2)<9,YEAR(T2)-1,YEAR(T2))) By for...

5 years ago
Reply
RE: Match multiple criteria with wildcards without making it an Array function

You could use: =LOOKUP(2,1/SEARCH(H4,$D$3:$D$8)/SEARCH(H3,C3:C8),E3:E8) which doesn't require wildcards to be entered for a partial match.

5 years ago
Reply
RE: How to define season by months that cover separate years?

Just FYI, that would treat the whole of September as part of your season, not just 15th onwards. I don't know how important that is? There is at least...

5 years ago
Reply
RE: Sum Problem

You could use: =SUMIF(C8:C17,"<>",D8:D17)

5 years ago
Reply
RE: Filtering data causing formatting issues

Filters work by hiding entire rows. You can't filter one table without affecting the visibility of any adjacent cells. You might be better off using a...

5 years ago
Reply
RE: Pass Named Range to VBA Function

If you want to use a number, you should either use some sort of lookup function within the formula that calls the UDF, or also pass the cells that con...

5 years ago
Forum
Page 42 / 56