Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
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
Reply
RE: WRAPCOLS

I feel like there should be something simpler using HSTACK and WRAPCOLS but it eludes me at the moment. Something like this should work - adjust the 5...

3 years ago
Reply
RE: Add sparklines automatically to a pivot table column

If you really wanted to pursue it, one option might be to create arrays with related colour values in (eg one has colour values for the line, one for ...

3 years ago
Reply
RE: Add sparklines automatically to a pivot table column

Unfortunately there is no option in VBA to simply apply a theme to a sparkline. You have to individually set the colours of the line, marker, high poi...

3 years ago
Page 20 / 56