What is the output of the mqtt node is it a string or object, what settings did you set output to in the mqtt node.
If it is an object
the value would be at msg.payload.TempC_SHT
you can use as is or if you want to move it to msg.payload then
set the change node to
set msg.payload
to msg.payload.TempC_SHT
There’s a great page in the docs (Working with messages : Node-RED) that will explain how to use the debug panel to find the right path to any data item.
Pay particular attention to the part about the buttons that appear under your mouse pointer when you over hover a debug message property in the sidebar.
From your image the object is in decoded_payload not payload. That may be in another property also, but your image does not show enough info to know for sure. Normally the mqtt node outputs on payload, so you must have other nodes in between it and the debug that have moved the payload.
Use @zenofmud post to get the exact property path.