Warning: file_get_contents(/data/phpspider/zhask/data//catemap/6/xamarin/3.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Powerbi Power BI-在多个真/假标志列上创建切片器_Powerbi_Slicers - Fatal编程技术网

Powerbi Power BI-在多个真/假标志列上创建切片器

Powerbi Power BI-在多个真/假标志列上创建切片器,powerbi,slicers,Powerbi,Slicers,假设我有一个业务表和一个业务类别: Business | Agricultural | Commercial | Industrial -------------------------------------------------- Company1 | 0 | 0 | 1 Company2 | 1 | 0 | 0 Company3 | 0 | 1 |

假设我有一个业务表和一个业务类别:

Business | Agricultural | Commercial | Industrial
--------------------------------------------------
Company1 |       0      |      0     |      1
Company2 |       1      |      0     |      0
Company3 |       0      |      1     |      0
每个类别都有一列,0或1作为真/假值,而不是类别列。在Power BI中为这些值制作切片器的最佳方法是什么?切片器选项将只是这些列的标题


此外,我的实际表有数百列和数百万行,因此有些解决方案可能是不可能的(转置、取消PIVOT等)。

正确的解决方案是取消PIVOT表。列和行的数量是不相关的,因为数据结构必须是正确的(目前不是)。此外,Power BI可以处理数十亿条记录,取消激励应该不是问题。谢谢,很高兴知道。我的内存已经用完很多次了,所以我想我对我的电脑没有足够的信心。但这很有效,应该先试试。