Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: External table is not in the expected format

Technically, for an xlsx file your extended properties should have Excel 12.0 Xml rather than just Excel 12.0, but that wouldn't explain this issue. I...

2 years ago
Forum
Reply
RE: VBA result in cell instead of pop up

Not with the current setup because you can't have multiple hyperlinks in one cell. You'd have to separate the results into multiple cells, then hyperl...

2 years ago
Forum
Reply
RE: VBA result in cell instead of pop up

Ahh, I had overlooked the fact that your month header cells are also dates (the first of each month) so it is matching those if you use the first of a...

2 years ago
Forum
Reply
2 years ago
Forum
Reply
RE: excel vba - extension of coloring text - using separate sheet for array range

There are quite a few issues with that code, not least the fact that you can't use text like vbRed or rgb(153,40,10) in a cell as VBA code. I suggest ...

2 years ago
Forum
Reply
RE: How to set checkbox array

Excel has two types of checkbox and you are using activex ones (best avoided if you can) so you need: Dim TBarray(1 To 10) As MSForms.CheckBox ...

2 years ago
Forum
Reply
RE: Code to hide row not working

FYI, the only thing wrong with your initial code (assuming it's inside a With block) was that you were missing some spaces: .Range(4 & ":" &...

2 years ago
Forum
Reply
RE: Handling multi-value cells

Thanks, though I can't claim credit. (unfortunately I've forgotten where I first came across that trick or I'd give proper attribution)

2 years ago
Forum
Reply
RE: Handling multi-value cells

Just as an alternative, you can split the two columns into lists and make a table out of them, then expand that table - see attached sample.

2 years ago
Forum
Reply
RE: Count Number for each month and year

I'm not sure how it would be too much work - the query does it all? See attached demo - I used a pivot table for the output but you could also make it...

2 years ago
Reply
RE: SUMIF in POWER QUERY

Hi Alan, I think you have to use the Account column as the original post only had the totals where the Account column equals the Description column...

2 years ago
Forum
Reply
RE: Excel create an image from picture in a Worksheet

Try adding oCht.Activate before the Paste line.

2 years ago
Forum
Reply
RE: Count Number for each month and year

Your initial sample suggests you don't care about which year it is, just the month name - is that correct? I think it's probably simplest just to g...

2 years ago
Reply
RE: Average lowest x values in a column

Been there, done that. 🙂 Very easy to get fixated on a specific path...

2 years ago
Reply
RE: Average lowest x values in a column

Isn't it just: =AVERAGEIF($A$1:$A$60,"<="&SMALL($A$1:$A$60,10))

2 years ago
Page 12 / 56