Data Logging to Excel
PLX-DAQ is a Windows data logging software originally designed for Parallax by Martin Hebel I believe it was, support was dropped after Windows Microsoft Office 2003. A few years ago a guy with the avatar NetDevil adapted the program to run with the newer 64 bit versions of Microsoft Office, he has an active thread on the Arduino forums with over 600 posts where the latest PLX-DAQ version can be downloaded complete with a beginners guide.
https://forum.arduino.cc/t/plx-daq-version-2-now-with-64-bit-support-and-further-new-features/420628
The Microbit, even though it has several logging options, is an ideal candidate for the PLX-DAQ software. It would be possible to log over Microbit radio but for an example here is a sketch to show just how simple it can be.
from microbit import * import time k=1.75 print("LABEL,Date,Time,Temperature") while True: degF=temperature() * k + 32 print("DATA,DATE,TIME,",str(degF)) time.sleep(2)