Skip to content
Snippets Groups Projects
Commit 2ed69e24 authored by Maz Ameli's avatar Maz Ameli Committed by GitHub
Browse files

Merge pull request #5616 from metabase/fix-5614

Fix broken "learn more" link in custom field menu
parents 5d7c47f4 a09d68f1
Branches
Tags
No related merge requests found
......@@ -124,7 +124,7 @@ Say we had a table of baseball games, each row representing a single game, and w
The words in the quotes are the names of the fields in our table. If you start typing in this box, Metabase will show you fields in the current table that match what you’ve typed, and you can select from this list to autocomplete the field name.
Right now, you can only use the following math operators in your formulas: +, –, * (multiplication), and / (division). You can also use parentheses to clarify the order of operations.
Right now, you can only use the following math operators in your formulas: `+`, `–`, `*` (multiplication), and `/` (division). You can also use parentheses to clarify the order of operations.
Once you’ve written your formula and given your new field a name, select `Raw Data` for your view, and click the `Get Answer` button to see your new field appended to your current table. It’ll be on the far right of the table. **Note that this new field is NOT permanently added to this table.** It will only be kept if you save a question that uses it.
......
......@@ -53,10 +53,10 @@ export default class ExpressionWidget extends Component {
onChange={(parsedExpression) => this.setState({expression: parsedExpression, error: null})}
onError={(errorMessage) => this.setState({error: errorMessage})}
/>
<p className="h5 text-grey-2">
<p className="h5 text-grey-5">
Think of this as being kind of like writing a formula in a spreadsheet program: you can use numbers, fields in this table,
mathematical symbols like +, and some functions. So you could type, Subtotal - Cost.
<a className="link" href="http://www.metabase.com/docs/latest/users-guide/03-asking-questions.html#creating-a-custom-field">Learn more</a>
mathematical symbols like +, and some functions. So you could type something like Subtotal &minus; Cost.
&nbsp;<a className="link" target="_blank" href="http://www.metabase.com/docs/latest/users-guide/04-asking-questions.html#creating-a-custom-field">Learn more</a>
</p>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment