Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 12, 2026
Topics: 0 / Replies: 841
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
Reply
RE: Pass Named Range to VBA Function

Is it possible to replace "GAM83MALE" with a cell reference? Yes. You could use INDIRECT(cell_reference) in the function call, assuming that the ...

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

Your Application.Goto line can't work since you can't use brackets in the name of a range - so it can't be called "ArrayMortality()" - and you can't s...

5 years ago
Forum
Reply
RE: Searching through all queries advanced editor text

You could use code like this: Sub ListTable1Queries() Dim q As WorkbookQuery For Each q In ThisWorkbook.Queries If InStr(1, q.Formula, """Table1"""...

5 years ago
Forum
Reply
RE: No way to transpose every 'n' rows of a single column file in PQ?

You could add an Index column starting at 1. Then add a calculated column using the index column thus: Number.Mod([Index]-1,15)+1) whi...

5 years ago
Forum
Reply
RE: Dashboard: "use pivot table" disables with macro

You can specify those as arguments for the protect command: Sheet1.Protect Password:="password here", AllowFiltering:=True, AllowUsingPivotTab...

5 years ago
Forum
Reply
RE: Run-time error 2147319765 8002829 - Automation error - invalid forward reference, or reference to uncompiled type

It sounds like a bug, but try breaking that line up into separate steps like this: Dim sh as Object Set sh = ActiveSheet.Next sh.Activat...

5 years ago
Forum
Reply
RE: How to remove #N/A from cell if I am using an array formula and can not use IFERROR function

Sorry, it was implicit in this sentence: "the first part of the formula checks if the number of values in the result array is less than the nu...

5 years ago
Reply
RE: How to remove #N/A from cell if I am using an array formula and can not use IFERROR function

COUNT(MODE.MULT($B$2:$D$21)) tells you how many numbers are returned by your original function (7 in this example) ROWS($A$1:$A1) returns a sequenc...

5 years ago
Reply
RE: Run-time error 1004

If the code is in a worksheet code module, then Range("UP84Male").Value would always refer to a range on that worksheet (this seems unlikely as you'd ...

5 years ago
Forum
Reply
RE: How to remove #N/A from cell if I am using an array formula and can not use IFERROR function

The error is not actually returned by the formula, which is why IFERROR doesn't work, it's because the result array has fewer 'rows' than the range yo...

5 years ago
Reply
RE: Currency change in textbox userform to Sheet1

I would strongly suggest that you keep the currency code and the actual value as separate cells.

6 years ago
Forum
Reply
RE: COMPILE ERROR : Block If without End if

You're missing about 9 End If lines, since you have nested all your If clauses within each other. It's hard to be sure without the workbook (all you n...

6 years ago
Forum
Page 43 / 57
0