2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【小ネタ】Python in Excelで4行でQRコードを作成する

Posted at

Excelでは今まで数式でQRコードを作れなかった

GoogleのスプレッドシートではQRコードをIMAGE関数を使って簡単に作れますが、
Excelの関数では残念ながら作成することができません
(VBAを使ってバーコードオブジェクトをいじればできますが)

Python in Excelを作っと使う

Python in Excelを使うとたったの4行で作成することができます。

Python_in_Excel.py
# B4にURL等を入れておく
import qrcode
data = xl("B4")
qr = qrcode.make(data)
qr.show()

鬼簡単♪画像を保存するときは右クリックで図として保存しましょう。

image.png

2
4
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?