@cnmycrl go to the List Page Field Properties of that field and change DisplayType to Custom, then replace the CustomCode content
<span><?php echo $data['Status']; ?></span>
with this
<span><?php echo ($data['Status'] == 1) ? "Success" : "Failed"; ?></span>