We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 61187c9 commit 48cf05fCopy full SHA for 48cf05f
1 file changed
source-excel/GetAbsoluteWorkbookPath.md
@@ -1,5 +1,4 @@
1
This parses `cell()` output to get the **absolute filepath of the current workbook**
2
-
3
This is one way you can have powerquery autodetect absolute filepaths
4
```
5
= Cell( "filename" )
@@ -8,7 +7,10 @@ The raw output
8
7
9
c:\data\excel\[Example Sales Table.xlsx]Sheet2
10
11
-formula:
+Note: You could drop the worksheet name, then replace `[]` with ``.
+I split this into steps to show how you can use intermediate calculations as variables
12
+without polluting the scope using named cells
13
+
14
```sql
15
= LET(
16
rawName, CELL("filename"),
0 commit comments