The writing style is different from the sample in the image.
This commit is contained in:
takumaru 2022-04-08 14:36:16 +09:00 коммит произвёл GitHub
Родитель 1b5bd3d79c
Коммит 57a63c2e30
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -43,7 +43,7 @@ The formula for **Label1** has been automatically recalculated, showing the new
In Power Fx, you can use formulas to determine not only the primary value of a control but also properties such as formatting. In the next example, a formula for the **Color** property of the label will automatically show negative values in red. The **If** function should look familiar from Excel:
`If( Value(Label1.Text) < 0, Red, Black )`
`If( Value( Label1.Text) > 0, Black, Red )`
![Animation of conditional formatting](media/variables/recalc-color.gif)