Forum Discussion

stevessestari's avatar
stevessestari
New Member
9 years ago
Solved

Maps, Tables and Data

Hello,   1. We have a map that displays the location with latitude and longitude, it needs to display only the last latitude and longitude of the table (based on the most current Timestamp) and not...
  • ankitpatira's avatar
    9 years ago

    stevessestari 

     

    1. I would say use create table under Modelling tab option and use below code to get max values for datetime,

     

    Table = FILTER(TABLENAME, TABLENAME[datetimeColumn] = MAX(TABLENAME[datetimeColumn]) )

     

    2. Conditional formatting is only applicable for fields that are type numeric so you can't do something like parse string to find certain value 'Y' and show it in red. I don't think that level of formatting is possible currently.

     

    3. You can have two image URL columns and create other calculated column with IF condition so show either url from URLColumn1 or URLColumn2 based on condition.