最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

powerbi - Calculated Column with three conditions - Stack Overflow

programmeradmin1浏览0评论

I"m building a dashboard that will identify missing values for three data points: Billing, Reason, Origin. They are all text and do not contain numbers.

How do I construct a calculated column I can use with a visual to display the missing information?

Here is the mess I created that is not working:

Missing Values = IF(
Dataset[Billing] = "" || Dataset[Billing] = BLANK(),
"Missing Billing",
Dataset[Billing] &&

IF(
Dataset[Reason] = "" || Dataset[Reason] = BLANK(), || Dataset[Reason] = BLANK(),
"Missing Reason",
Dataset[Reason] && 
    
IF(
Dataset[Origin] = "" || Dataset[Matter Origin] = BLANK(),
"Missing Origin",
Combined[Origin]

)

I'm expecting the column to display what is missing from each row.

Ultimately, I'd like the data to be displayed like this after I figure out how to create the column so I can create the visual.

dashboard concept

发布评论

评论列表(0)

  1. 暂无评论