Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page

Anonymous
Not applicable
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content

How to implement DAX formula for this : if column F- column G=column H-column I=True else false
10-27-2021
03:25 PM
1 ACCEPTED SOLUTION
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2021
12:12 AM

Please try to create a new column like below:
Match =
var f1 = 'Table'[PIR Count]-'Table'[PDR Count]
var f2 = 'Table'[GIR Count]-'Table'[GDR Count]
return IF(f1=f2,TRUE(),FALSE())
4 REPLIES 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2021
12:12 AM

Please try to create a new column like below:
Match =
var f1 = 'Table'[PIR Count]-'Table'[PDR Count]
var f2 = 'Table'[GIR Count]-'Table'[GDR Count]
return IF(f1=f2,TRUE(),FALSE())
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2021
05:22 PM

IF ( 'table'preinsert + 'table'gginsert - 'table'predelete - 'table'ggdelete = 0, true, false)
If that doesn't work, can you share what error you are seeing?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2021
05:14 PM

You will have to decide if this should be a column or a measure.
Measure would aggregate and so the filter context plays a key role.
If you would like every row to be flagged "Visually", then you will have to create a column not a measure.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
10-27-2021
05:18 PM

I am planning to create a calculate column but its not working

Helpful resources
Recommendations
Subject | Author | Posted | |
---|---|---|---|
07-04-2024 05:17 PM | |||
04-27-2024 03:07 AM | |||
03-24-2023 01:22 AM | |||
04-28-2024 12:31 PM | |||
12-19-2023 08:03 AM |
Featured Topics
Top Kudoed Authors (Last Month)
User | Count |
---|---|
141 | |
117 | |
80 | |
65 | |
47 |