Forum Discussion

hpuett's avatar
hpuett
Copper Contributor
Jul 15, 2024
Solved

data filter and pivot table manipulate data

Given A list of 12 street names in different notations (column ORIGNALSCHREIBWEISE)   Problem I - Filter Adding a filter and opening the dropdown list shows a reduced number (9 of 12) of OR...
  • dscheikey's avatar
    Jul 17, 2024

    hpuett 

    With the following formula, you can use a workaround. As far as I know, you cannot make pivot tables case sensitive.

     

    Each capital letter is marked with a 0-wide space (unichar 8203).

    =TEXTJOIN("",TRUE,IF(UNICODE(MID(B2,SEQUENCE(LEN(B2)),1))>64,IF(UNICODE(MID(B2,SEQUENCE(LEN(B2)),1))<91,UNICHAR(8203),""),"")&MID(B2,SEQUENCE(LEN(B2)),1))

    So you don't see that at all. Pivot will still differentiate according to whether it is present.

     

    Ich hoffe das hilft dir weiter.

     

Resources