Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Copying from one workbook to another when condition is met

I removed the step #"Changed Type" from both queries, that step usually has hard typed column names in it.

6 years ago
Forum
Reply
RE: Macro to select Filter criteria on Pivot Table based on criteria

Hi Howard, Change your J1 formula to: =IF(Recon!C10=0,"(blank)",MAX('Raw Data'!M:M)) This way, the filter value we need is always in J1. Try ...

6 years ago
Forum
Reply
RE: Copy cells over based on criteria from other cells, and sort.

Hi Tony, Put this formula in V4 and copy the cell to V10: =RANK(T4,T$4:T$10,1)+COUNTIF(T$4:T4,T4)-1 This will create a rank without duplicate...

6 years ago
Forum
Reply
RE: Macro to allow user to Save as PDF and Print out

Try this code: Sub Macro1() Dim Tbl As ListObject Set Tbl = ThisWorkbook.Worksheets("Schedules").ListObjects("BILLS") Tbl.Range.AutoFilter F...

6 years ago
Forum
Reply
RE: search text or phrases from a string in Table A and match with another list and return the values

Indeed, the last step of the query returns error, because {0} in the function return the result as a record typ. If we remove {0} from function, we...

6 years ago
Forum
Reply
RE: search text or phrases from a string in Table A and match with another list and return the values

If you want to have multiple matches, remove the {0} from the function, this is what refers to the first match only. When you work on the look...

6 years ago
Forum
Reply
RE: Macro to hide columns beginning with the text "freight"

Velouria said I still can't see why an autofilter wouldn't suffice if you're only looking in one column (as the original post says, although the subs...

6 years ago
Forum
Reply
RE: Copying from one workbook to another when condition is met

That will not work, as you clearly mentioned that the PO might be on a different row in the second file, a UNIQUE identifier is required. I tried to u...

6 years ago
Forum
Reply
RE: search text or phrases from a string in Table A and match with another list and return the values

First, I add the lookup table as a query, just like any other table, ad I perform the operations I need to get the result I need: added a column with ...

6 years ago
Forum
Reply
RE: Add column from raw data after query built?

Hi Gary, You can use a dynamic way to expand the table, this way any new column added in source will automatically show up, without manual editing....

6 years ago
Forum
Reply
RE: search text or phrases from a string in Table A and match with another list and return the values

Well, that's what your test just did, if the keyword is in lookup table, there will be a value return, it will display null if no match found. It ...

6 years ago
Forum
Reply
RE: Filter data by name and email

I can see you are already using special cells, maybe you want to use instead: .SpecialCells(xlCellTypeVisible) Or, you can just add a new condition...

6 years ago
Forum
Reply
RE: Group By - Sum of Times

Hi Lee, In the Changed Type step, change from type time to type number. The grouping will work.

6 years ago
Forum
Reply
RE: Copying from one workbook to another when condition is met

Hi Eric, The easiest way is to use Power Query to take the data from those 2 files and combine the information, a visual basic solution is much mor...

6 years ago
Forum
Page 80 / 130