Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想排除特定列有空格的整行....我不想将第一个名称列显示为空白的行...我在想也许一个 case 语句会对此有所帮助
[First Name] = 空白然后排除的情况???
如果这是 SQL,通常你可以这样做:
SELECT * FROM myTable WHERE myCol IS NOT NULL
我必须添加一个将用作标志的计算列,然后对标志进行过滤。
if(Len([名字])>0,1,0)
现在我可以对计算列进行过滤以仅显示其中包含 1 的行(这将是 First Name 不为空的行)。
这不会从数据集中删除行,但在可视化中具有与之前相同的效果。