replace values based on another column
3 TopicsHeader (distinct value) to be displayed in Paginated Report (Report Builder)
Hi, I need to display some name & id as a header. We are allowing only one name to select from filter, when we display as header using text box or table or list, we are getting same values duplicated in multiple rows though only row to be expected. Is there a way on this Paginated Report to display only one value as however I try same value getting repeated in multiple rows. Please let me know if you need more details. Its getting repeated like as in snap below: To be displayed like: Thanks NagSolved1.4KViews0likes2CommentsReplacing valuse based on ID column (Conditional Formatting)
Hello guys, I would like to replace the "63" value in the TT_ACT_ID column if the project number is "168907" in column TT_PRJ_ID. I have used replaced value with a if formula but it doesn't work. I've tried a couple of dax formula, see below. The formula I've used are: = Table.ReplaceValue(#"Renamed Columns", 63, each if [TT_PRJ_ID]= "168907" then "13" else [TT_ACT_ID] , Replacer.ReplaceValue,{"TT_ACT_ID"}) = Table.ReplaceValue(#"Renamed Columns", each [TT_ACT_ID], each if [TT_PRJ_ID]= "168907" and [TT_ACT_ID]= "63" then "13" else [TT_ACT_ID] , Replacer.ReplaceValue,{"TT_ACT_ID"}) Thanks guys! Greetings, Ka-LokSolved600Views0likes1CommentReplace a cell in one column if another columns cell equals something
I have the following two columns Current State Service Type Resource Type SCM301 FT101 SCM301 GT101 SCM100 FT101 SCM100 HM500 SCM075 KL102 SCM050 KL102 SCM100 KL103 GL200 FT101 I want to do the following If "Resource Type" = FT101 Then "Service Type" = FX008, Else keep Service Type as is Here is what I want to end up with Desired State Service Type Resource Type FX008 FT101 SCM301 GT101 FX008 FT101 SCM100 HM500 SCM075 KL102 SCM050 KL102 SCM100 KL103 FX008 FT101 Any suggests on how to go about this?Solved1.2KViews0likes3Comments