Sample Data
This table shows sales amounts in column A as numbers and in column B as text strings representing the same numbers.
| Cell | Value |
|---|---|
| A1 | SalesAmount |
| A2 | 1000 |
| A3 | 2000 |
| A4 | 3000 |
| B1 | SalesAmountText |
| B2 | 1000 |
| B3 | 2000 |
| B4 | 3000 |
This table shows sales amounts in column A as numbers and in column B as text strings representing the same numbers.
| Cell | Value |
|---|---|
| A1 | SalesAmount |
| A2 | 1000 |
| A3 | 2000 |
| A4 | 3000 |
| B1 | SalesAmountText |
| B2 | 1000 |
| B3 | 2000 |
| B4 | 3000 |
SalesAmountNumber = VALUE('Table'[SalesAmountText])A B 1 | SalesAmount | SalesAmountText 2 | 1000 | "1000" 3 | 2000 | "2000" 4 | 3000 | "3000"
A B C 1 | SalesAmount | SalesAmountText | SalesAmountNumber 2 | 1000 | "1000" | 1000 3 | 2000 | "2000" | 2000 4 | 3000 | "3000" | 3000