Hi @Anonymous ,
See below screenshot:

Fill property only accepts Color type data, you will need to convert the value to Text to save to your list:

So I assume you have 3 kinds of colors for the circle: Red, Green and Yellow, you can use a switch function the detect the color of the icon and get corresponding texts:
Switch(
Circle1.Fill,
Red,
"Red",
Green,
"Green",
Yellow,
"Yellow",
""
)
Append this to your Patch function:
Patch(
Table_1,
{Title: "1",
Date: Today(),
Category: "Status 1",
value: Switch(
Status1.Fill,
Red,
"Red",
Green,
"Green",
Yellow,
"Yellow",
""
)}
);
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.