diff --git a/blog/2024-09-04-v3_2_1/index.mdx b/blog/2024-09-04-v3_2_1/index.mdx
new file mode 100644
index 00000000..23b7bc7c
--- /dev/null
+++ b/blog/2024-09-04-v3_2_1/index.mdx
@@ -0,0 +1,48 @@
+---
+slug: v3_2_1-release
+title: v3.2.1 Release
+authors: [dgosbell]
+tags: [daxstudio]
+---
+import Issue from '@site/src/components/Github-Issue';
+
+# DAX Studio version 3.2.1
+
+Today we are happy to announce the release of version 3.2.1 of DAX Studio which includes the following new features and fixes.
+
+## DSCMD - DAX Parameter Support
+If you want to run a DAX query from the command line which has a parameter in it you can now pass a value to be used by that parameter
+
+Both the [CSV](/docs/features/command-line/commands/csv-command) and [XLSX](/docs/features/command-line/commands/xlsx-command) commmands both support passing parameters using the `-m, --parameter` option.
+
+In the following example the query has 2 parameters **@myColor** and **@myCategory** which are passed in using 2 `-m` options
+
+eg.
+```
+dscmd csv c:\temp\myquery.csv -s localhost\tab19 -d "Adventure Works DW" ^
+ -m myColor=Red ^
+ -m myCategory=Bikes ^
+ -q "EVALUATE FILTER('product', 'product[Color]=@myColor && 'product'[Category]=@myCategory)"
+```
+
+## Improved Jumplist Integration
+The Jumplist is a feature of Windows 10 & 11 where right clicking on a program in your task bar would show you recently opened files.
+
+
+
+Previously this list was only populated when you double clicked on a file that was associated with DAX Studio in Windows Explorer. Now DAX Studio will add items to this list when you open or save files making the Jumplist much more usable since it will be a true reflection of recently used files.
+
+## Full Change List
+
+### Updates
+* Adding DAX parameter support to CSV & XLSX commands
+* Improved Jumplist integration
+
+### Fixes
+* grid output not binding results with > or & in the column name
+* Vertipaq Options dialog learn more link broken
+* Adding Advanced XLSX output settings in Options
+* Fixing DirectLake mode option not working in View Metrics dialog
+* All Queries not capturing events
+* dscmd VPAX command not using default value for StatsColumnBatchSize
+* fixing crash on exit
\ No newline at end of file
diff --git a/blog/2024-09-04-v3_2_1/jumplist.png b/blog/2024-09-04-v3_2_1/jumplist.png
new file mode 100644
index 00000000..e9e8dce4
Binary files /dev/null and b/blog/2024-09-04-v3_2_1/jumplist.png differ
diff --git a/docs/features/command-line/commands/xlsx-command.md b/docs/features/command-line/commands/xlsx-command.md
index fca7d955..6e87a7f3 100644
--- a/docs/features/command-line/commands/xlsx-command.md
+++ b/docs/features/command-line/commands/xlsx-command.md
@@ -37,7 +37,7 @@ In the following example the query has 2 parameters **@myColor** and **@myCatego
eg.
```
-dscmd csv c:\temp\myquery.csv -s localhost\tab19 -d "Adventure Works DW" ^
+dscmd xlsx c:\temp\myquery.xlsx -s localhost\tab19 -d "Adventure Works DW" ^
-m myColor=Red ^
-m myCategory=Bikes ^
-q "EVALUATE FILTER('product', 'product[Color]=@myColor && 'product'[Category]=@myCategory)"