From 57a63c2e306ef30d33f009106dc95a0cff529d52 Mon Sep 17 00:00:00 2001 From: takumaru Date: Fri, 8 Apr 2022 14:36:16 +0900 Subject: [PATCH] Uniformity of writing style (#24) The writing style is different from the sample in the image. --- docs/variables.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/variables.md b/docs/variables.md index 07be934ed..402860ab3 100644 --- a/docs/variables.md +++ b/docs/variables.md @@ -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)