diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_39.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_39.png
index 045fd3b4..e7680941 100644
Binary files a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_39.png and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_39.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_40.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_40.png
index 48cf20f8..e80d038f 100644
Binary files a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_40.png and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_40.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42.png
index c26d74d6..db2934ce 100644
Binary files a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42.png and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42a.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42a.png
new file mode 100644
index 00000000..8b840971
Binary files /dev/null and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_42a.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_47.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_47.png
index 8927f3b9..e3f006f8 100644
Binary files a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_47.png and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_47.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_48.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_48.png
index 83d356f6..d6474a16 100644
Binary files a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_48.png and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_48.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49.png
index 114191b5..9d80c229 100644
Binary files a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49.png and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49a.png b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49a.png
new file mode 100644
index 00000000..60cee1c3
Binary files /dev/null and b/site/sigmaguides/src/dataapps_crowd_sourcing/assets/sugg_box_49a.png differ
diff --git a/site/sigmaguides/src/dataapps_crowd_sourcing/dataapps_crowd_sourcing.md b/site/sigmaguides/src/dataapps_crowd_sourcing/dataapps_crowd_sourcing.md
index a53af998..4094813f 100644
--- a/site/sigmaguides/src/dataapps_crowd_sourcing/dataapps_crowd_sourcing.md
+++ b/site/sigmaguides/src/dataapps_crowd_sourcing/dataapps_crowd_sourcing.md
@@ -344,7 +344,7 @@ When users upvote a suggestion, we need to store that information somewhere. We
Add a new `Empty` input table under the `Suggestions` table on the `Suggestion box` page and use the `Sigma Sample Database` connection.
-Configure two text columns: "Idea" and "Upvoted by". Use the `Created by` option to capture who made the upvote:
+Configure two text columns: `Idea` and `Upvoted by`. Use the `Created by` option to capture who made the upvote:
@@ -380,7 +380,7 @@ Add a new column via lookup to the `Upvoted Ideas` table:
-Configure the lookup to return a distinct count of email addresses, matched on `idea`:
+Configure the lookup to return a distinct count of the `Create by` column, matched on `idea`:
@@ -388,11 +388,7 @@ Configure the lookup to return a distinct count of email addresses, matched on `
NOTE:
We are doing a distinct count so that each person can only upvote each idea one time. This will stay at either `0` or `1` until we have other users submitting ideas.
-Rename the new column `Rank`, and drag it to the first position in the table.
-
-Let’s also sort the table by this column so that the most upvoted ideas appear first:
-
-
+Rename the new column `Upvotes`, and drag it to the first position in the table.
In this setup, users can see which idea ranks highest, but not how many votes were cast or who voted. Of course, that is possible along with many other things like adding charts or other visualizations that Sigma provides.
@@ -429,18 +425,20 @@ The `Workbook settings` button exposes many additional options you can customize
For more information, see [Create and manage workbook themes](https://help.sigmacomputing.com/docs/create-and-manage-workbook-themes)
-Changing the theme revealed a display issue with null values in the `Rank` column. We did not see this earlier but we can fix it easily now. The issue is that the lookup used to create the `Rank` column made a distinct count based on two text columns and the resulting new column (Rank) is numeric. Since two of the rows have no value, their rank is null.
+Changing the theme revealed a display issue with null values in the `Rank` column. We did not see this earlier but we can fix it easily now. The issue is that the lookup used to create the `Rank` column made a distinct count based on two text columns and the resulting new column (Rank) is numeric. Since two of the rows have no value, their rank is null:
+
+
You can fix this easily by adjusting the formula in the rank column to avoid this.
Select the `Rank` column and adjust the formula to handle nulls:
```code
-Coalesce(Lookup(CountDistinct([Upvoted Ideas/Idea]), [Idea], [Upvoted Ideas/Idea]), 0)
+Coalesce(Lookup(CountDistinct([Upvoted Ideas/Created by]), [Idea], [Upvoted Ideas/Idea]), 0)
```
For more information, see [Coalesce](https://help.sigmacomputing.com/docs/coalesce)
-The `Rank` column displays correctly, as the formula uses coalesce to replace `nulls` with `0`.
+The `Upvotes` column displays correctly, as the formula uses coalesce to replace `nulls` with `0`.
@@ -473,6 +471,10 @@ If a new suggestion is submitted, it will appear in the table with the impersona
+After making a few upvotes, let’s also sort the table by this column so that the most upvoted ideas appear first:
+
+
+
Congratulations! You just built a feature-rich Suggestion Box application in record time.
