Forum Discussion
dreyes6
4 years agoHelper I
Formula to copy same cell
Hello, Just need to know if there is a possibility to create a DAX to mirror the data from one cell to another. Original Data ID NAME ING 10 A IT 10 A 10 A 10 A ...
- 4 years ago
Hi,
You mean as a new Calculated Column?
= VAR ThisID = Table1[ID] RETURN CALCULATE( MIN( Table1[ING] ), FILTER( Table1, Table1[ID] = ThisID ) )Regards
- 4 years ago
Hi Jos,
yes a new calculated column, and it looks like your DAX works, Thank you much!!!
- 4 years ago
You're welcome!
Regards
Jos_Woolley
4 years agoSolution Sage
Hi,
You mean as a new Calculated Column?
=
VAR ThisID = Table1[ID]
RETURN
CALCULATE(
MIN( Table1[ING] ),
FILTER(
Table1,
Table1[ID] = ThisID
)
)Regards
- dreyes64 years agoHelper I
Hi Jos,
yes a new calculated column, and it looks like your DAX works, Thank you much!!!
- Jos_Woolley4 years agoSolution Sage
You're welcome!
Regards