Formula help

texasalynn

Well-known Member
Joined
May 19, 2002
Messages
8,458
This seems like it should be an easy solution, but my brain is having a freeze. I have a dataset that only allows me to create measures. I need a DAX that would let me create a revenue field if the customer name begins with I/C. Any suggestions?
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
If I understand, try this:

Sum Revnue I/C = CALCULATE (SUM[Revnue], LEFT(Table1[Customer Name],3 )= “I/C” )
 
Last edited:
Upvote 0
Method 2
- Create a new column

Code:
[IC group]= IF (LEFT (Table1 [Customer Name], 3) = "I / C", "IC_Group", Table1 [Customer Name])

- From PowerPivot, create a Pivot Table with the following fields


  • Rows: [IC Group]
  • Σ Values: Sum of Revnue


<colgroup><col style="mso-width-source:userset;mso-width-alt:3364;width:69pt" width="92"> <col style="mso-width-source:userset;mso-width-alt:3693;width:76pt" width="101"> </colgroup><tbody>
[TD="width: 92"]Row Labels[/TD]
[TD="width: 101"]Sum of Revnue[/TD]

[TD="class: xl63"]Abcert[/TD]
[TD="align: right"]20[/TD]

[TD="class: xl63"]cba4546[/TD]
[TD="align: right"]12
[/TD]

[TD="class: xl63"]dvg123[/TD]
[TD="align: right"]26[/TD]

[TD="class: xl63"]ghjklmn[/TD]
[TD="align: right"]75[/TD]

[TD="class: xl63"]IC_Group[/TD]
[TD="align: right"]290[/TD]

[TD="class: xl63"]Grand Total[/TD]
[TD="align: right"]423[/TD]

</tbody>
 
Upvote 0

Forum statistics

Threads
1,223,954
Messages
6,175,603
Members
452,658
Latest member
GStorm

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top