Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 10, 2026
Topics: 0 / Replies: 841
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...

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

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

3 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))

3 years ago
Reply
RE: VBA for Emails using Template (OFT file)

Put the Set outMail =… line before the With outMail line.

3 years ago
Forum
Reply
RE: VBA for Emails using Template (OFT file)

Your IT department should be fired - that's pretty basic stuff. 🙂 You need to put this line: Set OutMail = OutApp.CreateItemFromTempl...

3 years ago
Forum
Reply
RE: When combining 2 tables the rows are duplicated

You have duplicate rows in the Sales Allocation2 COL sheet.

3 years ago
Forum
Reply
RE: VBA for Emails using Template (OFT file)

Remove this line: Set OutMail = OutApp.CreateItem(0) Do you not have distribution lists at work?

3 years ago
Forum
Reply
RE: Find the last row of the data and formula to automatically fill down

It would probably make more sense to do all of this in the original query, but you have removed the queries which makes that a little tricky. 😉

3 years ago
Reply
RE: VBA Macro to Automatically Name file and Browse for folder

That particular dialog is for choosing a file, not a folder, and you didn't specify the InitialFileName property for the dialog anywhere. It w...

3 years ago
Forum
Reply
RE: VBA Macro to Automatically Name file and Browse for folder

This part of your code to set the file name: Range("U23").NumberFormat = "mm-dd-yyyy" will return True/False depending on the numberformat appli...

3 years ago
Forum
Reply
RE: Excel formulas causing the file to crash and very big in size

You have a lot of the same calculations repeated in those formulas. I would move the lookups to a new row above the columns, and add the factored tren...

3 years ago
Reply
RE: Average IFS Error

You can add that in like this: =IFERROR(AVERAGE(FILTER($D$2:$D$2382,COUNT(SEARCH({"assistant","supervisor","floor"},$C$2:$C$2382))*($a$2:$a$2382="s...

3 years ago
Reply
RE: Average IFS Error

If you have the FILTER function available, you could use: =IFERROR(AVERAGE(FILTER($D$2:$D$2382,COUNT(SEARCH({"assistant","supervisor","floor"},$C$2...

3 years ago
Reply
RE: Create a list of decimal numbers between values in two columns

Hi Alan, It would be: let Source = Excel.CurrentWorkbook(){[Name="Table3"]}[Content], #"Changed Type" = Table.TransformColumnTypes(Source,{{"ID"...

3 years ago
Forum
Reply
RE: How can I make it count only texts but rows?

When doing the replace values step(s) you should leave the 'value to find' box blank and put null in the replace with box.

3 years ago
Forum
Page 13 / 57
0