Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Upgrade Word Count Macro - Further

You could do something like this (it could probably do with a bit of refactoring and some error handling, but should get you started): Option Expli...

3 years ago
Forum
Reply
RE: Count - Based on cells format

"I'm not sure saying 'rethink your approach coz using formatting to calculate is bad' is helpful. And "you really shouldnt be calculating anything on ...

3 years ago
Reply
RE: Need help with Excel formulas

For the difference, you could also use: =MAX(0,B2-C2)

3 years ago
Reply
RE: Select Worksheet Cell for Print Macro

Instead of hardcoding them in the code, refer to ranges like this: startDate = sheets("sheet name").range("A1").value for example.

3 years ago
Forum
Reply
RE: SUM IF cell B11 includes XXX

That looks like OpenOffice to me, in which case try changing the comma to a semicolon: =C11*($D$9+ISNUMBER(FIND("PGS";B11))*1.5%)

3 years ago
Reply
RE: Personal macrobook and Addins not shown or present when opening a new Excel Instance

How are you opening the new instance? If you do it in code using automation (I.e. not Shell) then no startup files are loaded (that has always been th...

3 years ago
Reply
RE: Access SQL Database in Excel 2016 for Power Query transformation

Apologies - that's the legacy method. You would actually want (now that I'm at my computer) Data - New Query - From Database - From SQL Server Databas...

3 years ago
Forum
Reply
RE: Access SQL Database in Excel 2016 for Power Query transformation

Your colleague should be choosing Data - From other sources - from SQL server database (the first option).

3 years ago
Forum
Reply
RE: Sum a column in VSTACK

No worries - I confess my eyes tend to glaze over if I see MMULT in a formula. 😉

3 years ago
Reply
RE: How to send all sheets from the same workbook separately in one email

Just to note: cross posted in a couple of places:

3 years ago
Forum
Reply
3 years ago
Forum
Reply
RE: How to send all sheets from the same workbook separately in one email

Try something like this: Sub SendemailAll() Dim xOutlookObj As Object Dim xEmailObj As Object Dim tempFile As String Dim strbodymsg As String ...

3 years ago
Forum
Reply
RE: Why the 3rd criteria couldn't apply when used in FILTER function

The entries in your Type column have a trailing space, so you need "Single Family " as the criterion, or use TRIM on the range.

3 years ago
Reply
RE: Aggregate Function with IF Condition

The first 13 options for AGGREGATE require a range to process and will not work with an array, which is what your IF function is returning.

3 years ago
Page 19 / 56