在Power BI中,我需要删除列的重复项,但保留空值,因为它们是“待定”的。有什么办法可以使用DAX或查询编辑器吗?
答案 0 :(得分:3)
以两种方式过滤表,没有空值,只有空值。
在没有空值的表上,删除重复项。 public function store(Request $request)
{
$this->validate($request, [
'email' => [
'required',
'email',
function ($attribute, $value, $fail) {
if (Users::whereEmail($value)->whereActive(0)->count() > 0) {
$fail($attribute.' is already used.');
}
},
]);
}
}
将空行添加到此表中。
M代码如下:
Home > Remove Rows > Remove Duplicates
答案 1 :(得分:1)