@zimb86 The way I would do this is to have each sensor store it's values in a flow variable. You could use a change node to do this:

This way flow.temperature and flow.humidity will always have the latest value. Then connect the outputs of both change nodes to another 'change' node and use the 'replace' option to move in the values
and feed that to your
ui-text node.
Here is a sample flow using inject nodes in-place of the mqtt-in nodes and a debug in-place of the ui-text`
[{"id":"1cc4dda7.44b11a","type":"change","z":"3e1ce002.535ce8","name":"","rules":[{"t":"set","p":"humidity","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":270,"y":80,"wires":[["1788d09e.f95897"]]},{"id":"6d010fab.b62d28","type":"change","z":"3e1ce002.535ce8","name":"","rules":[{"t":"set","p":"temperature","pt":"flow","to":"payload","tot":"msg"}],"action":"","property":"","from":"","to":"","reg":false,"x":280,"y":160,"wires":[["1788d09e.f95897"]]},{"id":"1788d09e.f95897","type":"change","z":"3e1ce002.535ce8","name":"","rules":[{"t":"set","p":"payload","pt":"msg","to":"temp °C / humi %","tot":"str"},{"t":"change","p":"payload","pt":"msg","from":"temp","fromt":"str","to":"temperature","tot":"flow"},{"t":"change","p":"payload","pt":"msg","from":"humi","fromt":"str","to":"humidity","tot":"flow"}],"action":"","property":"","from":"","to":"","reg":false,"x":500,"y":120,"wires":[["e8d8301b.957a78"]]},{"id":"2bb527d5.911e38","type":"inject","z":"3e1ce002.535ce8","name":"","props":[{"p":"payload"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"56","payloadType":"num","x":90,"y":80,"wires":[["1cc4dda7.44b11a"]]},{"id":"eb2f94c2.4e8178","type":"inject","z":"3e1ce002.535ce8","name":"","props":[{"p":"payload"},{"p":"topic","vt":"str"}],"repeat":"","crontab":"","once":false,"onceDelay":0.1,"topic":"","payload":"45","payloadType":"num","x":90,"y":160,"wires":[["6d010fab.b62d28"]]},{"id":"e8d8301b.957a78","type":"debug","z":"3e1ce002.535ce8","name":"","active":true,"tosidebar":true,"console":false,"tostatus":false,"complete":"false","statusVal":"","statusType":"auto","x":670,"y":120,"wires":[]}]