1. 程式人生 > >如何過濾出有Column為空值的行資料?

如何過濾出有Column為空值的行資料?

最近客戶在做將本地domainuser syncOffice365,在user同步完成後要對user資訊做校驗。在同步後發現小部分user在同步後個人部分資訊丟失,需要匯出O365user進行校驗。因為使用者數量比較大,無法手動檢查。

經過查詢發現excel可以設定條件過濾那些使用者資訊不全的行。

具體如下:

  1. 開啟excel,找到Formulas-> AutoSum的下拉選單中點選“More Functions

Machine generated alternative text:厶 Inset Functlon H 0M E NSERT PAG E LAYOUT FORMULAS DATA REV EW utoSu Recently Financial Logical Text Date & Lookup & Math & More Used · Sum Average Count Numbers More Functions.. Time · Referen “ · Trig . Functions · Fu n Ctl 0 n Llbrary

  1. 找到functionOR的點選OK

Machine generated alternative text:rt Functio Search for 3 functlOn: Type a b rl 酐 descrlptlOn Of what you want to do and then 匕 〖 G 0 Or select 3 categont: All Select a fu n Ctl 0 n: ODD ODDFPRICE ODDFYIELD ODDLPRICE ODDLYIELD 0 FFS ET OR(logica11,logica12 … .) Checks Whether any Of the arguments are TRUE, and returns TRUE or FALSE. Returns FALSE on , , 引 I arguments are FALSE. Cancel Hel on thlS functlon

  1. 此時編寫條件如下,設定如果有一項值為空則返回值為True

如:

=OR(C2="",SD2="",E2="")

Machine generated alternative text:F2 ‘ jx oR(c2&”,D2&”,E2&”)F2 1 John FALSE3 2 Juice Dey N TRUE4 3Joe QA 3 TRUE5 4Tom 4V TRUE67

  1. 執行完成後通過返回值
    True進行過濾,顯示的就是丟失資訊的人員list