Easy Excel 🔰 "including" aggregation
← Easy Excel time saving technique (@ oharu _ work)
Thank you for watching 😊
🎙️ Sound Ali Recommended
"I want to add only those that contain specific words" problem
In such a case
The magic symbol "*" (asterisk)
Just surround the search criteria with "* keyword *"!
This alone is "~ advertisement," "advertising expenses," "job advertisement"
Everything can be summed up in an instant.
Formula is here 👇
▼ Formula for Copy
= SUMIF (C: C, "* ad *," D: D)
The following formula is used in the video.
= SUMIF (B8: B28, "* advertisement *," C8: C28)
⚠️ note, the asterisk
Be sure to use it in "" (double quotation). If you forget this, you will cry with an error 🥲
Save it and try using it tomorrow 🙌
* It may not work depending on the version or specification
Next time, we will make your daily life easier.
i will deliver it, so please save it and look back
*********************************************
Make some free time /
Mac 17 years | Windows 3 years
We are sending the struggle story of Excel de beginner 🔰.
Please like and follow me if you like
▶️ _ work
Please feel free to DM and comment
********************************************* "
Excel Time Shortening Easy Excel Excel beginner # excel _ beginner # excel
「条件に合うものをすべて抽出したい」という検索って、実は“抽出(一覧にする)”と“集計(合計する)”の2パターンが混ざりがちです。私は最初ここで迷いました。なので、目的別に使い分けできるように、現場でよく使うやり方をまとめます。 【1】まずは「含む」を合計したい(集計) 記事のとおり、いちばん手軽なのはSUMIFです。たとえば項目に「SNS広告運用費」「検索広告(Google)」「求人広告(中途採用)」「ラジオ広告スポット枠」みたいに“広告”が入っていて、金額を合計したいとき。 =SUMIF(B:B,"*広告*",C:C) ポイントは、*(アスタリスク)をダブルクォーテーションの中で使うこと。これを忘れるとエラーになって焦ります…。 【2】条件が複数あるならSUMIFSが便利 「広告を含む」+「5月分だけ」+「金額が0以外」みたいに条件が増えると、SUMIFだと足りません。そんなときはSUMIFS。 例:=SUMIFS(C:C,B:B,"*広告*",A:A,"5月") (A列が月、B列が項目、C列が金額の想定) 【3】“抽出して一覧にしたい”ならFILTER(Microsoft 365) 合計じゃなくて、「広告が入っている行を全部表示したい」なら、FILTER関数が一番わかりやすいです。 例:=FILTER(A:C,ISNUMBER(SEARCH("広告",B:B))) SEARCHは「含む」を判定、ISNUMBERでTRUE/FALSEにしてFILTERに渡すイメージです。 【4】FILTERがない環境なら「フィルター」や「詳細フィルター」も現役 関数が難しいときは、データ→フィルターで列を絞るだけでも“抽出”はできます。私はまずフィルターで当たりを付けてから、必要なら関数に置き換えました。 【ちょい注意】表記ゆれ対策 「広告費」「リスティング広告費」「ニュースサイト広告」みたいに言い方がバラバラでも、"*広告*"ならまとめて拾えます。一方で「告知」などまで拾いたくない場合は、キーワードをもう少し具体的に(例:"*広告(")するなど調整すると失敗が減りました。 目的が“抽出”なのか“集計”なのかを先に決めると、関数選びが一気にラクになります。明日の作業でそのまま試せるはずです。
































































































































