Hi
I am trying to update the meta field from one metafeild to another one
I have one metafeild with below value
Namespace and key product.stockanalysis
100342105 -999 0 0 1 true SupplierOther false 1 -999 false
Result metafeild name and key
product.localstock
product.suppilerstock
Now I want 0 and 1 to show on sperate metafeild is it possible
I am using this condition on flow but not working properly
{% metafields.product.stockanalysis %}
{% assign metafield_content = metafields.product.stockanalysis %}
{% if metafield_content contains ‘’ and metafield_content contains ‘’ %}
{% assign start = metafield_content | split: ‘’ | last %}
{% assign end = start | split: ‘’ | first %}
{{ end }}
{% else %}
“Metafield does not contain the desired text”
{% endif %}