Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Dynamic Column Name encounter error

Table.ColumnNames(Source){0} will return the Name of the first column from the table Source. (Table.ColumnNames returns a list of column ... names) ...

5 years ago
Forum
Reply
RE: Transfer of data slow when pressing command button

I think it's related to the structure of your file, if you have many formulas and calculation is automatic, things are slow. You can disable calcul...

5 years ago
Forum
Reply
RE: Dynamic Column Name encounter error

What's the purpose of the #"Added Custom" step?

5 years ago
Forum
Reply
RE: Transfer of data slow when pressing command button

You have 2 options: Put an exit if you have exceeded the used range, so your code will not examine 10+million cells: For Each area In Columns("A:J"...

5 years ago
Forum
Reply
RE: Transfer of data slow when pressing command button

Warren is right, but: For Each area In Columns("A:J").SpecialCells(xlCellTypeBlanks) If area.Cells.Row <= ActiveSheet.UsedRange.Rows.Count Then are...

5 years ago
Forum
Reply
RE: Why it displays a simple value Zero using Scientific notation

Normally, you should fix it using a Round function in B column, to 2-3 or more decimal places, a number like 0.000000000000002 will be rounded to 0, e...

5 years ago
Reply
RE: Missing data from Web Query

Hi Joseph, I was able to complete the refresh without any errors. What excel version are you using?

5 years ago
Forum
Reply
RE: Why it displays a simple value Zero using Scientific notation

Hi Julian, It's much more complex than you expect. Please take a look at this article that describes the floating point calculation problem:

5 years ago
Reply
RE: Remove Duplication

Example attached. You can set the csv file path and group size to split into as many pages you need. File size is too large, choose the Open I...

5 years ago
Forum
Reply
RE: Remove Duplication

Hi Bill, 1048576 is the maximum number of rows in excel. Obviously, we cannot add in a sheet more that this number of records, so we have to fin...

5 years ago
Forum
Reply
RE: FORMULA TO DISTRIBUTING VALUES AUTOMATICALLY ACROSS CELLS

try this one in cell G5: =IF(G4="Yes","Issue",IF(AND(G$1>0,$E5-SUM($F5:F5)>0),MIN(SUM($G$1:G1)-SUM($F5:F5),$E5-SUM($F5:F5)),0)) It will re...

5 years ago
Reply
RE: How to have pivoted year and month in order

Hi Aye, You have to take headers separately, remove first 3 columns, then split and sort the numbers as you wish. After you finish sorting, using T...

5 years ago
Forum
Reply
RE: FORMULA TO DISTRIBUTING VALUES AUTOMATICALLY ACROSS CELLS

Thank you I guess a good formula never dies 🙂

5 years ago
Reply
RE: csv file i can download but cannot retrieve from PQ

Hi, You can automate the download using VBA and Internet Explorer, there is code in this forum to programatically click on a download button, most pro...

5 years ago
Forum
Reply
RE: macro to detach all slicers from all pivot tables

Hi, remove On Error Resume Next, this hides the errors from you, but you need to see them to understand what is happening. There is nothing I ca...

5 years ago
Forum
Page 65 / 130