Easy Excel 🔰 Instant Unit Conversion⚖️💧🌡️🕐
← Easy Excel time saving technique (@ oharu _ work)
Thank you for watching 😊
🎙️ Sound Ali Recommended
[Complete Save Version] Can be used with copy and paste! List of conversion codes for overseas units
👇
Emails from overseas business partners, materials from overseas sites... If you say "50 pounds," "10 inches," "72 degrees," it will not come to mind 😇
Are you searching for "50 pounds kg" on the internet and calculating it with a calculator?
Actually, if you use Excel's "CONVERT function," you can translate it into Japanese units in an instant! ✨
💡 basic writing
= CONVERT (target value, "original unit," "converted unit")
When entering the unit directly, surround it with "" (double quotation)!
⚠️ [Attention here!]
The unit symbol of the CONVERT function is strictly case-sensitive.
(If you make a mistakeN/ A You will get an error! (
Please save this post and copy and paste it from the list below when using it
👇
👇 List of unit codes used in practice 👇
📏 [Length / Distance]
Inch → cm: "in" → "cm"
Feet - > Meters: "ft" - > "m"
Yard - > Meter: "yd" - > "m"
Miles - > kilometers: "mi" - > "km"
⚖️ [weight]
Pounds → kilograms: "lbm" → "kg"
Ounces → grams: "ozm" → "g"
🌡️ [Temperature]
Fahrenheit - > Celsius: "F" - > "C"
(※ Temperature is capitalized!)
💧 [amount of liquid]
Gallon - > Liter: "gal" - > "l" or "L"
・ Pint - > Milliliter: "pt" - > "ml"
🕒 [Time]
(※ For calculation of scheduled man-hours etc!)
Time - > Day: "hr" - > "day"
Seconds → minutes: "sec" → "mn"
Save it and try using it tomorrow 🙌
* It may not work depending on the version or specification
Next time, we will shorten the time to 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
ここからは「実際に私がつまずいた所」と「よく検索されるけどクリックされにくい疑問」をまとめて補足します。CONVERT関数は便利なんですが、単位コードのクセを知らないと #N/A で止まりがちなんですよね…。 ■1) ポンド→キロ換算を“列で自動化”するコツ 単発で =CONVERT(50,"lbm","kg") と書くより、表にしておくと一気に楽になります。 例:A列に数値、B列に元単位、C列に変換後単位、D列に結果 D2:=CONVERT(A2,B2,C2) この形にすると、B列に「lbm」、C列に「kg」を入れて下までコピーするだけ。米国取引先からの荷物重量(lbm)を毎回処理するような業務で時短になりました。 ■2) 摂氏⇄華氏は“F/Cは大文字”が地雷 温度だけは大文字小文字が特に重要で、私はここで何度も #N/A を出しました。 ・華氏→摂氏:=CONVERT(72,"F","C") ・摂氏→華氏:=CONVERT(22,"C","F") 「f」「c」だとエラーになるので、入力規則やプルダウン化しておくのもおすすめです。 ■3) Excelで為替レートを関数で出したいとき(注意点あり) 検索で「excel 為替レート 関数」が多いのですが、CONVERTは“単位”の変換なので通貨(USD→JPYなど)は直接は変換できません。 私が現場でやっているのは次の2パターンです。 (1) レートを別セルに置いて掛け算 例:ドル建て金額がA2、USD/JPYレートがB1 円換算:=A2*$B$1 レートは手入力でもいいし、経理・財務の人と同じ参照元(社内共有のレート表)に揃えると後で揉めにくいです。 (2) Power Queryでレート表を取り込む Webのレートを参照する方法もありますが、サイト仕様変更で壊れやすいので「社内で使うなら安定性優先」が個人的には安心でした。 ■4) よくあるエラーと確認ポイント(保存版) ・#N/Aが出る:単位コードの大文字小文字ミス、または未対応コードの可能性 ・"l" と "L":リットルはどちらでも動くことがありますが、表記はチームで統一すると混乱しません ・"in"(インチ)と "m"(メートル)などは短いので打ち間違いが起きやすい→コピペ運用が最強 海外製プロテインの1回分(ozm→g)、輸入部品(ネジ)の長さ(in→cm)、米国オフィスのエアコン設定(F→C)…みたいな“あるある案件”ほど、表+CONVERTで一気にラクになります。必要なら、単位コードをプルダウンにして入力ミスを減らす運用もおすすめです。