Supplies are limited. Contact info@espc.tech right away to save your spot before the conference sells out.
Get your discountScore big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount
Hi,
I am looking at some data regarding earthquakes. I can return the highest Magnitude for the selections made, e.g. 8,2 in magnitude. What I want is to also retrieve the date for when it happened, and the region. So, if I select the month of July and the highest recorded magnitude was outside Japan on 2021-08-12, how can I get that value on a card? Looks like I am not using the correct DAX! Data looks as in the image below, thanks!
Kind regards,
Jari
Solved! Go to Solution.
Hi,
Date/Region Highest Magnitude =
VAR MyTable =
ADDCOLUMNS (
'Table 1',
"Concat",
'Table 1'[Date] & "|" & 'Table 1'[Region Name]
)
RETURN
MAXX (
MyTable,
IF ( 'Table 1'[Magnitude] = MAX ( 'Table 1'[Magnitude] ), [Concat] )
)
Regards
Hi,
Date/Region Highest Magnitude =
VAR MyTable =
ADDCOLUMNS (
'Table 1',
"Concat",
'Table 1'[Date] & "|" & 'Table 1'[Region Name]
)
RETURN
MAXX (
MyTable,
IF ( 'Table 1'[Magnitude] = MAX ( 'Table 1'[Magnitude] ), [Concat] )
)
Regards
Thank you, it works well with minor changes since it was supposed to be split!
Kind regards,
Jari
User | Count |
---|---|
12 | |
11 | |
8 | |
6 | |
6 |
User | Count |
---|---|
24 | |
19 | |
14 | |
10 | |
7 |