Forum

Alan Sidman
Alan Sidman
@alansidman
Moderator
Member
Joined: Oct 18, 2018
Last seen: Aug 7, 2025
Topics: 3 / Replies: 233
Reply
RE: Pasting a Table from Excel to Powerpoint

Thought this might be beneficial

4 years ago
Forum
Reply
RE: NEED TO EXCLUDE BLANK VALUES FROM DISTINCT COUNT IN PIVOT TABLE

Will you mock up what the expected PT should look like. I am not visualizing what you want. That will help to determine what we need to do to get th...

4 years ago
Forum
Reply
RE: Format the data differently in the table

Sorry about the attachment. Attached now.

4 years ago
Forum
Reply
RE: Format the data differently in the table

Bring your data into a Data Model and write a measure to consolidate the data separated by commas. See my attached file. A tutorial on this is at:

4 years ago
Forum
Reply
RE: Time for an upgrade?

Here is a white paper that will help you as you go forward.

4 years ago
Reply
RE: Time for an upgrade?

In my mind, if you have a data base then you should be using Data Base Software (ie. MS Access) as spreadsheets are really not the most effective way...

4 years ago
Reply
RE: Pivot table transpose

Look at the attached. All done with Power Query let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Grouped Rows" = Table.Group(Sour...

4 years ago
Forum
Reply
RE: Re-arranging Excel Basic

I used Power Query let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Grouped Rows" = Table.Group(Source, {"Old Consumer Id"}, {{"Da...

4 years ago
Reply
RE: Pivot table transpose

Where is the source data? This might be possible with Power Pivot, but cannot access the source data of the existing PT. Possible to build a measure...

4 years ago
Forum
Reply
RE: Adding counter if lines have same values

Group your data and keep all rows. Call the new grouped column "Data" Add a column =Table.AddIndexColumn([Data],"Index",1,1) Delete the grou...

4 years ago
Forum
Reply
RE: Error When Refreshing Power Query Connections Using VBA

Have you tried. ActiveWorkbook.RefreshAll

4 years ago
Forum
Reply
RE: Text Function with Nested IF conditions? Possible?

Try this Mcode let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], CheckColors = Table.AddColumn(Source, "Custom", each if[Colors]="Gre...

4 years ago
Forum
Reply
RE: Group and transpose table

let Source = Excel.CurrentWorkbook(){[Name="Table1"]}[Content], #"Grouped Rows" = Table.Group(Source, {"District"}, {{"Data", each _, type table [Dist...

4 years ago
Forum
Reply
RE: power query etract values begining with a number.

How about loading a sample workbook showing what you have and then mock up what you expect the results to look like. We can then analyze and provide ...

4 years ago
Forum
Reply
RE: power query etract values begining with a number.

if Text.StartsWith([Our Ref_1],{0..9}) then [Our Ref_1] else null))) try this

4 years ago
Forum
Page 13 / 16