Forum

Catalin Bombea
@catalinb
Admin
Member
Joined: Nov 8, 2013
Last seen: Jul 3, 2025
Topics: 1 / Replies: 1936
Reply
RE: Looking for a less klugey to maintain & update PC Asset Numbers

Hi Scotty, You cannot use formulas in this situation, you will have to control what happens only with macros. Use Worksheet_Change event to detect ...

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

Hi, Sounds like you want the ISO Year. Try: =YEAR(DATE(YEAR(A1-WEEKDAY(A1-1)+4),1,1)-MOD((DATE(YEAR(A1-WEEKDAY(A1-1)+4),1,1)-2),7)+(7*IF(...

6 years ago
Reply
RE: Custom column with conditions on two special values (either one of the values exists, or both values exists) in Power Query

Chris Yap said 123, 345 and 998 should return "No", basically only Chris Yap said 898 is return No 898 returns no, but it was not in the list ...

6 years ago
Forum
Reply
RE: Custom column with conditions on two special values (either one of the values exists, or both values exists) in Power Query

Ok, I understand that 998 should return no, but why 898 should return yes? Add a new column with this formula: if List.Count([Grouped][User ...

6 years ago
Forum
Reply
RE: Custom column with conditions on two special values (either one of the values exists, or both values exists) in Power Query

Chris Yap said and how to incorporate the OR, that is the following conditions fulfilled "Everyone" "UserDomain users" "Everyone" and "UserDomain us...

6 years ago
Forum
Reply
RE: Custom column with conditions on two special values (either one of the values exists, or both values exists) in Power Query

Hi Chris, When you click the button to add new column, in the dialog window that shows up you should paste only the formula, not the entire step sy...

6 years ago
Forum
Reply
RE: Custom column with conditions on two special values (either one of the values exists, or both values exists) in Power Query

Use List.Contains. If you refer to a single column from a table, that is a list, you can use List functions on that column: = Table.AddColumn(#"Add...

6 years ago
Forum
Reply
RE: Import from PDF via Power Query in Excel -

It's not available yet in Excel Power Query. But you can try opening the PDF files in Word (Open With word, Word app will try to convert the PDF to...

6 years ago
Forum
Reply
RE: Need a macro to compare two sheet data

item Number 1 has a value of 2 in the Duplicate Count column, but that number can be found only once in Sheet2, can you clarify? Is the vba solutio...

6 years ago
Forum
Reply
RE: Use of #.## in custom format

A credit card should be entered as text, excel works only with numbers up to 15 digits, any digit after 15 digits will be replaced with 0. Most likel...

6 years ago
Forum
Reply
RE: how to transpose a particular column values that tie to userid into Cross table (pivot) in Power Query

Hi Jim, Don't be afraid to try, if you think Pivot Column should work. It will not work, because Grouped column has tables, not values. If you c...

6 years ago
Forum
Reply
RE: how to transpose a particular column values that tie to userid into Cross table (pivot) in Power Query

Your attempt to Expand columns is not dynamic. If you will have 10 columns for a specific user, the query will not reveal them because the columns you...

6 years ago
Forum
Reply
RE: how to transpose a particular column values that tie to userid into Cross table (pivot) in Power Query

You can count before or after expanding the table, does not matter, see attached file.

6 years ago
Forum
Reply
RE: adding a unique number every 7 days starting on Wednesday

If you cannot set the start date to a wednesday, then you will have to perform a few extra steps: -Add a new column named Custom.1: = Table.AddColu...

6 years ago
Forum
Reply
RE: adding a unique number every 7 days starting on Wednesday

Hi Allison, Add an Index column, starting from 1, then a column with this formula: =Number.RoundUp([Index]/7,0) Make sure your calendar start...

6 years ago
Forum
Page 87 / 130