Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: Jun 11, 2026
Topics: 0 / Replies: 841
Reply
RE: How to split address text string into separate parts

Using TEXTBEFORE with the same arguments should return the address up to the STE part.

4 years ago
Reply
RE: How to Create a Routine that can remove the name of the file extension (.Txt) Whatever the created name of the file itself is

To strip off everything after the last period, you can use Instrrev: Left$(UserForm1.TextBox1.Text & "", Instrrev(UserForm1.TextBox1.Text,...

4 years ago
Forum
Reply
RE: Converting time formats

You could also use: =TEXT(I2*100,"00:00")+0 with the same [h]:mm formatting

4 years ago
Reply
RE: Fill down with different increment?

Let's say the other sheet is named Other Sheet. In A1 enter: zz'Other Sheet'!B1 In A2 enter: zz'Other Sheet'!B21 Then select A1 and A...

4 years ago
Reply
RE: Insert row with absolute cell reference - without INDIRECT hopefully

You could use INDEX instead - replace TestTab!$H$4 with INDEX(TestTab!$H:$H,4)

4 years ago
Reply
RE: VBA to navigate to SharePoint files

Unfortunately I don't think the exact thing you are looking for is possible with VBA. The only place the Sites appear is in Backstage view, not in any...

4 years ago
Forum
Reply
RE: Excel Ribbon

Why do you need them on the ribbon when you can just pin them to the recent files menu?

4 years ago
Forum
Reply
RE: Inquiry about a function GetPivotData

Amend the formula to: =GETPIVOTDATA(""&G1,$A$1,"שנים",2016)

4 years ago
Reply
RE: VBA to navigate to SharePoint files

You should be able to use something like this, specifying the relevant SP path in the InitialFileName property: With Application.FileDialog(ms...

4 years ago
Forum
Reply
RE: Un-Pivot Data using Lambda Function

Dynamic array formulas do not work in tables, though you don't really need a table to use normal pivot tables. You could simply amend your output f...

4 years ago
Reply
Reply
RE: VBA to navigate to SharePoint files

Do you actually open the file they choose after they select it in the dialog, or do you just need the path? Automating the backstage view (File - Open...

4 years ago
Forum
Reply
RE: Copy/Paste range as a picture on another sheet

Your pictures will overlap, but the basic syntax would be something like this: Dim n As Long For n = 1 To 20 Sheets("GPC" & n).Range("B16...

4 years ago
Forum
Reply
RE: Refresh windows 10 file explorer automatically

I meant exactly as I said - if I have an open Explorer window and a file changes size in the selected folder, the window updates automatically.

4 years ago
Forum
Reply
Page 22 / 57
0