Forum

Velouria
@debaser
Moderator
Member
Joined: Nov 1, 2018
Last seen: May 22, 2025
Topics: 0 / Replies: 838
Reply
RE: Convert messages to PDF

You need to set a reference (Tools - references in the VB Editor menu) to the Microsoft Outlook object library.

4 years ago
Forum
Reply
RE: Two dependent lists without duplicates

I sympathise as I'm in exactly the same situation at work!

4 years ago
Reply
RE: Two dependent lists without duplicates

So I guess you don't have functions like FILTER or UNIQUE available?

4 years ago
Reply
Reply
RE: Looking to increase Macro efficiency

You could use something like this: Sub ReplaceHyphens() ' ' ReplaceHyphens Macro ' Used to replace week ranges with specific week numbers ' ' Di...

4 years ago
Forum
Reply
RE: SUMMARIZE EXCEL FILE USING POWER QUERY

I think you'd be better off with VBA for something like that.

4 years ago
Forum
Reply
RE: Connecting 2 tables to one table

Then it appears all you need to do is remove the other columns from your 2 queries and append one to the other. Where are you stuck?

4 years ago
Forum
Reply
RE: Getting Total from another Tab

INDEX would also be more efficient than your current volatile INDIRECT and ADDRESS formulas. 😉

4 years ago
Reply
RE: Connecting 2 tables to one table

It's not really clear to me what output you want, but your description of getting it all in one column sounds like you just want an append query to me...

4 years ago
Forum
Reply
RE: Getting Total from another Tab

Do you mean that in BM15 on the Contract Change Sites tab (not the Revenue tab), you want the sum of cells AM4:AQ4 from the Revenue 2018-19 tab? ...

4 years ago
Reply
RE: How to create array of numbers from 1 row?

You could use something like this I think: let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Changed Type" = Table.TransformCo...

4 years ago
Forum
Reply
RE: Counting Average Consecutive Positive and Negative Numbers

Using helper columns: In b2: =IF(A2>=0,IF(OR(A3<0,A3=""),COUNTIF(A$2:A2,">=0")-SUM(B$1:B1),""),"") and copy down. In C2: =IF(A2<0...

4 years ago
Reply
RE: Can't get date format to change

Compare your formula to Mynda's - they are not the same. 😉

4 years ago
Reply
RE: Changing colums

Your first find will either locate the correct column, or fail if the value isn't present. I don't see any code to copy and the rest of the code doesn...

4 years ago
Forum
Reply
RE: Separate Text using Formula

One way would be like this: For village: =MID(B5,10,FIND(",",B5)-11) For city: =TRIM(MID(B5,SEARCH("City",B5)+5,LEN(B5)))

4 years ago
Page 36 / 56