Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Power Query - File Path & File Name Using SharePoint and Defined Name (Excel)

You can load a named range in using syntax like: = Excel.CurrentWorkbook(){[Name="filepath"]}[Content]{0}[Column1] For the special characters in...

1 year ago
Forum
Reply
RE: Bypass $RECYCLE.BIN & System Volume Information

Try amending the second sub to: Sub ListFilesInSubFolders(StartingFolder As Scripting.Folder, LinksTable As ListObject, ByRef ArrResults() As ...

1 year ago
Forum
Reply
RE: Outlook Save Specific Attachment - Replace KILL with a code to Replace/Overwrite

You can't automatically overwrite it. You have to delete the old one then save the new one. I would suggest moving the kill line to just before the sa...

1 year ago
Forum
Reply
RE: Filter data in one column of pivot table (but not sum of data in 2 columns)

Depending on your end goal, a quick method is to use an autofilter on the sheet and simply hide rows that way.

1 year ago
Reply
RE: Need to COUNT instances of TRUE in Power Query within 6 fields (in same table)

I don't see the problem. Once you have it split into entities, you can filter out whatever you are interested in.

1 year ago
Forum
Reply
RE: Assistance needed with formula that should ignore hidden cells

For your original data set with the Auxiliary column in place, perhaps: =IF([@Override]="Yes","Yes",IF(OR([@Supplier]="",[@[Comparative Price]]="")...

1 year ago
Reply
RE: Need to COUNT instances of TRUE in Power Query within 6 fields (in same table)

It would seem to me that it would be simpler to just parse the Applicable QMS Entities column into new rows split on the semicolon, so that you get a ...

1 year ago
Forum
Reply
RE: = in a formula works but <= does not!!

Further to what Hans said, using = will cause (for reasons only MS understand) SUMIF to convert numeric text to numbers before doing the comparison, b...

1 year ago
Reply
RE: Paste Special not available

Perhaps you have event code such as a Worksheet_SelectionChange routine that is preventing it. (it may be deliberate) Is it your workbook, or did some...

1 year ago
Reply
RE: Paste Special not available

Is it only Paste Special, or is Paste also disabled? Also, is it a macro-enabled workbook?

1 year ago
Reply
RE: Paste Special not available

Is it one particular file or all files?

1 year ago
Reply
RE: Get Data from file stored on Teams

The link you get from the Copy link function in teams won't generally work as a file path. You should open the file in Sharepoint and get the link fro...

1 year ago
Forum
Reply
RE: Excel VBA - Copy Active Sheet to All Open Workbooks

You probably have a hidden workbook. Test for that before trying to copy: Sub CopyToAllOpen() Dim wb As Workbook Dim sh As Worksheet Set...

1 year ago
Forum
Reply
RE: TextJoin by ID

You could use something like: =LET(ID,LEFT(Table1[@[Recipe ID & Sequence]],4),IF(ID=LEFT(A1,4),"",Table1[@[Recipe Name]]&" "&ID&":"...

1 year ago
Page 8 / 56