excel-2016

Can't find Microsoft Forms 2.0 Object Library or FM20.DLL

我们两清 提交于 2019-11-27 04:47:54
问题 I would like to use this library to work with the clipboard. I expect to see it as in the screenshot below, but I can't find it in my list of reference libraries. I tried adding VBA form to my excel project with no success. How can I make it appear? I have no FM20.DLL file on my entire computer W7 and Excel 2016. I have searched both through explore and using find with cygwin. 回答1: From this old knowledge base article my guess would be this DLL is perhaps only included in older versions of

PowerQuery: How can I concatenate grouped values?

帅比萌擦擦* 提交于 2019-11-27 03:41:05
If I have the following table (shown in the image below), how can I write a grouped query that would concatenate the grouped results? For this example, I'd want to group by the LetterColumn and concatenate the NumberColumn So the desired results would be: If your table is Source, and if NumberColumn has the number type, then this will work: = Table.Group(Source, {"LetterColumn"}, {{"Column", each Text.Combine(List.Transform(_[NumberColumn], (x) => Number.ToText(x)), ","), type text}}) Table.Group does a group by operation, which creates a table made up of all of the rows with the same value in

PowerQuery: How can I concatenate grouped values?

天大地大妈咪最大 提交于 2019-11-26 09:29:32
问题 If I have the following table (shown in the image below), how can I write a grouped query that would concatenate the grouped results? For this example, I\'d want to group by the LetterColumn and concatenate the NumberColumn So the desired results would be: 回答1: If your table is Source, and if NumberColumn has the number type, then this will work: = Table.Group(Source, {"LetterColumn"}, {{"Column", each Text.Combine(List.Transform(_[NumberColumn], (x) => Number.ToText(x)), ","), type text}})