Find everything you need to get certified on Fabric—skills challenges, live sessions, exam prep, role guidance, and more. Get started
I need to compare email addresses.
If Table "serial" (email address) is different from Table "Monthly Billing" (email address), display Yes
If Table "serial" (email address) is the same as Table "Monthly Billing" (email address), display No
The Conditional Column name will simply be labeled Mismatch in the dashboard.
How can this be written out and how/where do I place this ?
I have not excelled in formulas yet.
Need ASAP if someone could help
Solved! Go to Solution.
RESOLVED:
Mismatch = if(MAXX(FILTER('Monthly Billing','Monthly Billing'[Tangoe Owner Email]='users'[Intune Owner Email]),'Monthly Billing'[Tangoe Owner Email])=users[Intune Owner Email],"NO","Yes")
Hi,
In which of the 2 tables do you want to write the calculated column formula? Of the 2 tables which table has each e-mail listed only once (no repetitions). It is best to share the link from where i can download your PBI file.
@Anonymous
you can try to create a column
Column = if(MAXX(FILTER('Monthly Billing','Monthly Billing'[email address]=serial[email address]),'Monthly Billing'[email address])=serial[email address],"No","Yes")
Proud to be a Super User!
The following DAX expression appears when creating column...
A single value for column 'Intune Owner Email' in table 'users' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.
Please advise.
@Anonymous
are you creating a measure?
could you pls provide some sample data?
Proud to be a Super User!
Intune Owner Email is from the users table.
Tangoe Owner Email wis from the Monthly Billing table.
I need a column or measure that compares the 2 columns and displays mismatches in a separate column on my dashboard.
When I apply the following as a calculated column:
Mismatch = if(MAXX(FILTER('Monthly Billing','Monthly Billing'[Tangoe Owner Email]=users[Intune Owner Email]),'Monthly Billing'[Tangoe Owner Email])=users[Intune Owner Email],"No","Yes")
I get the following error:
A single value for column 'Intune Owner Email' in table 'users' cannot be determined. This can happen when a measure formula refers to a column that contains many values without specifying an aggregation such as min, max, count, or sum to get a single result.
RESOLVED:
Mismatch = if(MAXX(FILTER('Monthly Billing','Monthly Billing'[Tangoe Owner Email]='users'[Intune Owner Email]),'Monthly Billing'[Tangoe Owner Email])=users[Intune Owner Email],"NO","Yes")
Check out the September 2024 Power BI update to learn about new features.
Learn from experts, get hands-on experience, and win awesome prizes.
User | Count |
---|---|
112 | |
107 | |
97 | |
38 | |
32 |
User | Count |
---|---|
153 | |
122 | |
77 | |
74 | |
44 |