Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 10, 2026
Topics: 0 / Replies: 841
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
Reply
RE: Sum a column in VSTACK

You could use SCAN for the running total: rt, SCAN(0,dc,LAMBDA(a,b,a+b))

3 years ago
Reply
RE: Pivot Table Preserve Formatting

If you format the Normal cell style to use whatever font you like, that will be the default for all cells unless specified otherwise.

3 years ago
Reply
RE: Alterations to Word Count macro

You're welcome. 🙂 That's exactly why I have it as a function - reusable anywhere!

3 years ago
Forum
Reply
RE: Pivot Table Preserve Formatting

Yes - what Mynda said! 🙂

3 years ago
Reply
RE: Cut and paste?

Power Query is a simple option for this - see attached. You can also do it using pivot tables but it's a bit more convoluted.

3 years ago
Reply
RE: Pivot Table Preserve Formatting

Did you apply the font while a filter was in operation? If so, you can then end up with different formatting on new rows that appear due to other filt...

3 years ago
Reply
RE: Dates format 1900

You've created a circular reference by putting that formula in the same column it is referring to. What are you actually trying to achieve?

3 years ago
Reply
RE: Office Script - Power Automate / Data Type Issues with setNumberFormat

Instead of using DATEVALUE, I'd suggest using DATE(RIGHT(tblschuiexport[Datum],4),MID(tblschuiexport[Datum],4,2),LEFT(tblschuiexport[Datum],2))

3 years ago
Reply
RE: Alterations to Word Count macro

Add this function below your code: Function GetFolder() As String Dim dlg As FileDialog Set dlg = Application.FileDialog(msoFileDialogFolderPi...

3 years ago
Forum
Reply
RE: Get a formula where the first and last rows of a lookup range are the value of 2 calculated cells, not manually typed in.

You could use: =IF(B12<>"","",IFNA(VLOOKUP($G12,INDEX('Category_P&L_ CM'!$A:$A,$P$2):INDEX('Category_P&L_ CM'!$C:$C,$P$3),2,FALSE),0)...

3 years ago
Reply
RE: WRAPCOLS

Not simpler, but just as an option: =LET(data,A2:B507,numrows,50,numcols,ROUNDUP(ROWS(data)/numrows,0),CHOOSECOLS(HSTACK(WRAPCOLS(INDEX(data,,...

3 years ago
Page 20 / 57
0