Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: countifs or sumproduct in Power Query or Dax

Hi Mario, You should add a new column, here is the complete step: NewColumn = Table.AddColumn(#"Changed Type", "CountIf", (x)=> Table.SelectR...

6 years ago
Forum
Reply
RE: Calculating working days with conditions.

Hi Deena, Add 2 columns to Sample table, with the following formula: Status Desc=RELATED('Status'[Status]) Name=RELATED(Contact[Customer Name...

6 years ago
Forum
Reply
RE: Calculating working days with conditions.

Hi Deena, Can you upload a sample file with test data? It will be much easier to work on a sample than on imaginary data. You can take a look at...

6 years ago
Forum
Reply
RE: Power Query Refresh Error Due to Rigid Column Names Pulled from Web

Hi Ju, Try this instead, if all columns are type number: = Table.TransformColumnTypes(Source, List.Transform(Table.ColumnNames(Source), each {_,...

6 years ago
Forum
Reply
RE: Record tick by tick seconds data from live feed along with timestamps

Hi Jay, You can use the Change event of that worksheet. Put the code below in that worksheet vb module: Private Sub Worksheet_Change(ByVal T...

6 years ago
Forum
Reply
RE: Delete row by vba

You can put the code below in the BasketOrder.xlsm and run it, it should delete the rows from other files. Sub DeleteRows() Dim FSO As Object: ...

6 years ago
Forum
Reply
RE: VBA - I dont want the destination workbook to be visible when opening to copy past

One of the files is open in another instance of excel. xlApp.Workbooks.Open "F:Department FoldersAccountingGMD Calculator JournalGMD_Calculator_Jou...

6 years ago
Forum
Reply
RE: VBA - I dont want the destination workbook to be visible when opening to copy past

You have to open the file in another excel instance. Dim xlApp as Excel.Application set xlApp =New Excel.Application To open the file in this...

6 years ago
Forum
Reply
RE: Analysis Table Structure / Pivot Table Issue

First formula looks like an index column. You can use: =ROW()-1 This assumes that the table header is in row 1. If the headers are in the sec...

6 years ago
Reply
RE: Week Number and Year from Date

It will take me a week to write about this 🙂 You will have to read a few articles: The above formula works based on the ISO week date system, wh...

6 years ago
Reply
RE: Delete row by vba

Can you provide sample files, so we can see what values are in column C? These should be full matches, partial matches, case sensitive or not case sen...

6 years ago
Forum
Reply
RE: Analysis Table Structure / Pivot Table Issue

If the formula is not added to the new rows, it means that there are multiple formulas or static values in those columns. You should delete the con...

6 years ago
Reply
RE: Convert Years/Days to Months

Hi, If you have the age in years, adding a column that multiplies the age by 12 should be enough, normally the age in years should have decimals, s...

6 years ago
Forum
Reply
RE: Analysis Table Structure / Pivot Table Issue

No, there is no relationship between tables, a table cannot detect a change in another table. Depends on what that analysis does, but I'm sure that...

6 years ago
Reply
RE: Analysis Table Structure / Pivot Table Issue

Hi Andy, My guess is that you have "predefined" formula in a normal range of cells, waiting for users to fill the data input columns. This way of h...

6 years ago
Page 86 / 130