Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: VBA SCRIPT TO OFFSET SELECTED RANGE

I mean how does it know how far to offset from the selection?

7 years ago
Forum
Reply
RE: VB Error Code 400

Do you have code that runs automatically when the workbook opens? If so, please post it, otherwise it's all going to be random guesswork.

7 years ago
Forum
Reply
RE: Cannot Sort on a given column

You can't sort the pivot table by M2 without moving that field to the first row field.

7 years ago
Forum
Reply
RE: VBA SCRIPT TO OFFSET SELECTED RANGE

Those are different offsets - how should the code determine what offset you want?

7 years ago
Forum
Reply
RE: VB Error Code 400

Can you post the file?

7 years ago
Forum
Reply
RE: Formula help

6 hours = 1/4 of a day (Excel stores times as fractions of 1 day) and if you divide 25 by 1/4 you get 100, so I'd guess that's the source of your prob...

7 years ago
Reply
RE: COUNTIFS issue

Just for information (it's probably not worth it for only two combinations), you could also use a construction like this: =SUM(COUNTIF(E4:AI4,{"H",...

7 years ago
Reply
RE: Steps in Becoming Expert in Excel

I'd also suggest that you are correct in your observation that it is a never-ending process. Excel as a product is constantly evolving and your chance...

7 years ago
Reply
RE: How do you get a formula to paste when using Macro's?

Just to answer the specific issue you were having, you need to double up any quotes inside the actual formula, so it would be: Range("B15").Fo...

7 years ago
Forum
Reply
RE: If-and-or

You could also use a lookup: =(D4+E4)*LOOKUP(DATEDIF(B4,C4,"y"),{0,5,10},{0,0.05,0.1}) or, since the bands are also the percentage values: =(...

7 years ago
Reply
RE: 4 Week formula

The formula in the workbook I posted doesn't actually require them to be in the same order.

7 years ago
Reply
RE: returning multiple "true" values within 1 cell

If you have a version of Excel that has TEXTJOIN, you could use: =TEXTJOIN(" ",TRUE,IF(COUNTIF(B7,"*"&COUNTRY&"*"),COUNTRY,""))

7 years ago
Reply
RE: How To Manage Updates in your Shared VBA project

You don't need a script. All the users run the networked copy of the add-in so, when changes are made to that, they automatically get them the next ti...

7 years ago
Forum
Reply
RE: How To Manage Updates in your Shared VBA project

I'd suggest you read Ken's article here:

7 years ago
Forum
Reply
RE: VBA TEXT OUTPUT FILE NAME

Like this: Open LOutputPath & "" & format(now, "hh-mm-ss"".txt""") For Output As #1

7 years ago
Forum
Page 54 / 56