Hi I'm using the following function in my power app form
I've three column in my power app ( sharepoint list data source , column type Number )
The first column is autopopulated when user logs in "UNIT RATE "
the second column value is manullay entered by the user " Quantity "
The third column is where I need to calculate the ( quantity * Unit rate)
Update of amount column : Value(DataCardValue2.Text)
update of amount datacard : ThisItem.Amount
update of amount datacard value =
Spoiler (Highlight to read)
If(
IsBlank(Value(ThisItem.'Quantity ')),
Blank(),
ThisItem.'Quantity ' * ThisItem.'Unit Rate '
)
If(IsBlank(Value(ThisItem.'Quantity ')),Blank(),ThisItem.'Quantity ' * ThisItem.'Unit Rate ')

the amount columnn is still showing as blank
Could anyone please help to fix this issue