Forum Discussion

mm5308's avatar
mm5308
Icon for Helper I rankHelper I
4 years ago
Solved

Create New Table Based on DIstinct Values of One Column and Calculated Values of Another Column

I've been searching around for a couple hours now and can't figure out what I'm missing...hopefully someone here can guide me to the right solution.   Out of a large table, I want to create a small...
  • PaulDBrown's avatar
    4 years ago

    Try:

    New Table = 

    ADDCOLUMNS(
    DISTINCT('Table'[ID]),
    "Post", CALCULATE(MIN('Table'[PostedDate]), ALLEXCEPT(Table, Table [ID]))